{% load url from future %} {% load i18n %}
{% 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 }}