{% extends "base.html" %} {% load static %} {% block demo %}
{% csrf_token %}
{% csrf_token %}
{% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% block progress %} {% endblock progress %}
{% endblock %}