13 lines
296 B
HTML
13 lines
296 B
HTML
{% load pyconau2017_tags %}
|
|
{% if form.non_field_errors %}
|
|
<div class="has-errors">
|
|
{{ form.non_field_errors }}
|
|
</div>
|
|
<br/>
|
|
{% endif %}
|
|
|
|
<blockquote><small>
|
|
Fields marked with <strong>(*)</strong> are required.
|
|
</small></blockquote>
|
|
|
|
{% include "forms/render.html" with form=form %}
|