{%extends "base.html" %} {%block title%}Conference Registration - {{conference}}{%endblock%} {%block extrahead%} {{ super() }} {%endblock%} {%block content%}

Conference Registration - {{conference}}

{{ csrf_input }} {% if form.errors %}

Note! This form contains errors and has not been saved! The fields with invalid input have been highlighted below with a message describing the required correction.

{% endif %} {%if form.non_field_errors()%}{{form.non_field_errors()}}{%endif%} {%for fieldset in form.fieldsets%}
{{fieldset.legend}} {%if fieldset.introproperty|lookup("")%}
{{fieldset.introproperty|lookup("")}}
{%elif fieldset.intro or fieldset.introhtml%}
{%if fieldset.intro%}{{fieldset.intro|markdown}}{%endif%}{%if fieldset.introhtml%}{{fieldset.introhtml}}{%endif%}
{%endif%} {%for f in fieldset.fields%}
{{f.label_tag()}}
{{f}}
{% if f.errors %}{{ f.errors}}{% endif %}
{%endfor%}
{%endfor%}

{%endblock%}