{% extends 'index.html' %} {% load static i18n %} {% load i18n %} {% block content %}
    {% 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 %} {% if key_result_feedback %}

    {% trans "Key Results" %}

    {% for key_result in key_result_feedback %}
  3. {{forloop.counter}}. {{key_result.key_result_id.key_result}} {{key_result.answer.answer}}.
  4. {% endfor %} {% endif %}
{% endblock content %}