{% extends "base.html" %} {% load i18n %} {% block title %}{{ survey }} - {{ block.super }}{% endblock %} {% block content %}

{{ survey }}

{% csrf_token %} {{ form.errors }} {% for question, line in form.survey_fields %} {% ifchanged question.group %} {% endifchanged %} {% if "importance" in line %} {% else %} {% endif %} {% endfor %}
{% trans "question"|capfirst %} {% trans "importance"|capfirst %} {% trans "answer"|capfirst %}

{{ question.group.title }}

{{ line.answer.label_tag }}{{ line.importance }} {{ line.answer }}{{ line.answer }}
{% if not is_first_page %}{% endif %} {% if is_last_page %} {% else %} {% endif %}
{% endblock %}