6 lines
129 B
HTML
6 lines
129 B
HTML
{% for field in create_form %}
|
|
{{ field.label_tag }}
|
|
{% if field.errors %}{{ field.errors }}{% endif %}
|
|
{{ field }}
|
|
{% endfor %}
|