djLint/tests/source_django/table.html

34 lines
976 B
HTML
Raw Normal View History

2021-12-14 08:57:37 +00:00
{% if errors %}
<tr>
<td colspan="2">
{{ errors }}
{% if not fields %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}
</td>
</tr>
{% endif %}
{% for field, errors in fields %}
<tr {% with classes=field.css_classes %}
{% if classes %}class="{{ classes }}"{% endif %}
{% endwith %}>
<th>
{% if field.label %}{{ field.label_tag }}{% endif %}
</th>
<td>
{{ errors }}
{{ field }}
{% if field.help_text %}
<br>
<span class="helptext">{{ field.help_text }}</span>
{% endif %}
{% if forloop.last %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}
</td>
</tr>
{% endfor %}
{% if not fields and not errors %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}