symposion_app/pinaxcon/templates/_form_snippet.html
2018-09-29 17:14:21 +12:00

19 lines
349 B
HTML

{% load lca2018_tags %}
{% load lca2019_tags %}
{% load bootstrap %}
{% load crispy_forms_tags %}
{% if form.non_field_errors %}
<div class="has-errors">
{{ form.non_field_errors }}
</div>
<br/>
{% endif %}
{% if form|has_required_fields %}
<blockquote>
Fields marked with a * are required
</blockquote>
{% endif %}
{{ form|crispy }}