mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 18:31:54 +00:00
22 lines
733 B
HTML
22 lines
733 B
HTML
{{ errors }}
|
|
{% if errors and not fields %}
|
|
<p>
|
|
{% for field in hidden_fields %}{{ field }}{% endfor %}
|
|
</p>
|
|
{% endif %}
|
|
{% for field, errors in fields %}
|
|
{{ errors }}
|
|
<p {% with classes=field.css_classes %}
|
|
{% if classes %}class="{{ classes }}"{% endif %}
|
|
{% endwith %}>
|
|
{% if field.label %}{{ field.label_tag }}{% endif %}
|
|
{{ field }}
|
|
{% if field.help_text %}<span class="helptext">{{ field.help_text }}</span>{% endif %}
|
|
{% if forloop.last %}
|
|
{% for field in hidden_fields %}{{ field }}{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
{% endfor %}
|
|
{% if not fields and not errors %}
|
|
{% for field in hidden_fields %}{{ field }}{% endfor %}
|
|
{% endif %}
|