{% extends 'base.html' %} {% block content %} {% if already_submitted %}
You’ve already submitted feedback for {{ month }}. {% if next_url %} Continue {% endif %}
{% endif %}

Monthly Feedback

{{ month }}
{% if next_url %}{% endif %} {% for q in questions %}
{{ loop.index }}. {{ q.question_text }}
{{ q.qtype }}
{% if q.qtype == 'text' %}
0 / 1000
{% elif q.qtype == 'single' %}
{% for opt in q.options|sort(attribute='sort_order') %} {% endfor %}
{% elif q.qtype == 'multi' %}
{% for opt in q.options|sort(attribute='sort_order') %} {% endfor %}
You can select multiple.
{% endif %}
{% endfor %}
Your feedback is stored securely.
{% if next_url and already_submitted %} Skip {% endif %}
{% endblock %}