{%extends "base.html"%} {%load commitfest%} {%block contents%}
{%csrf_token%} {%if form.errors%}
Please correct the errors below, and re-submit the form.
{%endif%} {%if form.non_field_errors%}
{{form.non_field_errors}}
{%endif%} {%if note%}
{{note|safe}}
{%endif%} {%for field in form%} {%if not field.is_hidden%}
{{field|label_class:"control-label col-lg-1"}}
{%if field.errors %} {%for e in field.errors%}
{{e}}
{%endfor%} {%endif%} {%if not field.name in form.selectize_multiple_fields%}{{field|field_class:"form-control"}}{%else%}{{field}}{%endif%} {%if field.help_text%}
{{field.help_text|safe}}{%endif%}
{%else%} {{field}} {%endif%} {%endfor%}
{%if threadbrowse %} {%include "thread_attach.inc" %} {%endif%} {%if user.is_staff%} {%endif%} {%endblock%} {%block extrahead%} {%endblock%} {%block morescript%} {%endblock%}