{% extends 'base/layout.html' %} {% block content %}

{{ title }}

Please fill out the details below as accurately as possible.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors.as_text }}
{% endif %}
{% endfor %}
Cancel
{% endblock %}