テンプレートにコードを記述する方法を決定するコーディング スタイルはありますか?
こちらです:
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
これ:
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
またはこれ:
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>