{% load static i18n %} {% if answers %}
    {% for answer in answers %}
  1. {{forloop.counter}}. {{answer.question_id.question}}? {% if answer.question_id.question_type == '1' %} {{ answer.answer.answer}}. {% endif %} {% if answer.question_id.question_type == '2' %}
    {% endif %} {% if answer.question_id.question_type == '3' %}
    {{answer.answer.answer}}
    {% endif %} {% if answer.question_id.question_type == '4' %}
    {% endif %} {% if answer.question_id.question_type == '5' %}
    {{answer.answer.answer}}
    {% endif %}
  2. {% endfor %}
{% else %}
{% trans "Questions not answered yet." %}
{% endif %}