{% load url from future %} {% load i18n %} {% comment %} {% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %} {% for question in survey.questions %}
{{ question.question_text }}
{% endfor %}
{% endcomment %}
{% csrf_token %} {% for field in response_form %} {% if 'question_' in field.name %} {% if field.field.required %}
{{ field.errors }} * {% else %}
{{ field.errors }} {% endif %} {{ field.help_text}}
{{ field }}
{% endif %} {% endfor %}
{{ response_form.comments.errors }} {{ response_form.comments.label_tag }} {{ response_form.comments.help_text}}
{{ response_form.comments }}