{% load static i18n%}
{% csrf_token %}
{% for q in questions %} {% if q.question_type == '1' %}
{{forloop.counter}}.{{q.question}}
{% endif %} {% if q.question_type == '2' %}
{{forloop.counter}}.{{q.question}}
{% endif %} {% if q.question_type == '3' %}
{% trans "Yes" %}
{% trans "No" %}
{% endif %} {% if q.question_type == '4' %} {{forloop.counter}}. {{q.question}} {% for option in options %} {% if option.question_id.id == q.id %}
{% endif %} {% endfor %} {% endif %} {% if q.question_type == '5' %}
{{forloop.counter}}. {{q.question}}
{% trans "Strongly Disagree" %}
{% trans "Disagree" %}
{% trans "Neutral" %}
{% trans "Agree" %}
{% trans "Strongly Agree" %}
{% endif %} {% endfor %}