2016-07-09 23:14:31 +10:00
|
|
|
{% if form.non_field_errors %}
|
|
|
|
{{ form.non_field_errors }}
|
|
|
|
<br/>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-06-27 18:13:38 +10:00
|
|
|
{% for field in form %}
|
|
|
|
{% if not field.is_hidden %}
|
|
|
|
<div class="fieldWrapper">
|
2016-06-29 23:17:15 +10:00
|
|
|
<div>
|
2016-07-19 14:31:13 -07:00
|
|
|
{% include "forms/widget.html" %}
|
2016-06-29 23:17:15 +10:00
|
|
|
</div>
|
2016-06-27 18:13:38 +10:00
|
|
|
|
|
|
|
{% if field.help_text %}
|
|
|
|
<span class="help_text">{{ field.help_text|safe }}</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|