symposion_app/pinaxcon/templates/_form_snippet.html
Christopher Neugebauer 504cf77574 Allows us to manage additional speakers from the admin (#58)
* Allows us to manage additional speakers from the admin

* Show speaker e-mail addresses. Fixes #57

* Denotes fields as required.
2016-08-04 09:59:50 +10:00

22 lines
466 B
HTML

{% if form.non_field_errors %}
{{ form.non_field_errors }}
<br/>
{% endif %}
<p>Fields marked with <strong>(*)</strong> are required.</p>
{% for field in form %}
{% if not field.is_hidden %}
<div class="fieldWrapper">
<div>
{% include "forms/widget.html" %}
</div>
{% if field.help_text %}
<span class="help_text">{{ field.help_text|safe }}</span>
{% endif %}
<p></p>
</div>
{% endif %}
{% endfor %}