{% extends "base.html" %} {% block content_title %}

Enter your details

{% endblock %} {% block content %}
{% block tips %} Enter your details into the fields below, then click the button to save. {% endblock %}
{% block form %}
{% csrf_token %} {% if form.non_field_errors|length > 0 %}

Please correct the errors below.

{{ form.non_field_errors }} {% endif %} {% block extra_preform %}{% endblock %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endfor %} {% block postform %}{% endblock %}
{% endblock %}
{% endblock %}