2016-07-09 13:14:31 +00:00
|
|
|
{% if form.non_field_errors %}
|
|
|
|
{{ form.non_field_errors }}
|
|
|
|
<br/>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-08-03 23:59:50 +00:00
|
|
|
<p>Fields marked with <strong>(*)</strong> are required.</p>
|
|
|
|
|
2016-06-27 08:13:38 +00:00
|
|
|
{% for field in form %}
|
|
|
|
{% if not field.is_hidden %}
|
|
|
|
<div class="fieldWrapper">
|
2016-06-29 13:17:15 +00:00
|
|
|
<div>
|
2016-07-19 21:31:13 +00:00
|
|
|
{% include "forms/widget.html" %}
|
2016-06-29 13:17:15 +00:00
|
|
|
</div>
|
2016-06-27 08:13:38 +00:00
|
|
|
|
|
|
|
{% if field.help_text %}
|
|
|
|
<span class="help_text">{{ field.help_text|safe }}</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|