{% extends 'index.html' %} {% load static i18n%} {% load i18n %} {% block content %}
{% csrf_token %}

{% trans "Feedback Answer" %}

{% 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' %}
Yes
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 %}
{% if feedback.employee_key_results_id.all %}

{% trans "Key Result" %}

{% for key_result in feedback.employee_key_results_id.all %}
{{forloop.counter}}. {{key_result.key_result}}
{% trans "Perfect" %}
{% trans "Good" %}
{% trans "Average" %}
{% trans "Bad" %}
{% endfor %} {% endif %}
{% endblock content %}