Feedback – {{ resp.month }}
{% if resp.employee %}
{{ resp.employee.full_name }}
{{ resp.employee.employee_code }} · {{ resp.employee.email }}
{% else %}
Anonymous
{% endif %}
{% for a in resp.answers %}
{{ loop.index }}. {{ a.question.question_text }}
{# Show text #}
{% if a.answer_text %}
{{ a.answer_text }}
{% endif %}
{# Single-choice label (if present) #}
{% if a.selected_option and a.selected_option.label %}
{{ a.selected_option.label }}
{% endif %}
{# Multi-choice labels (if present) #}
{% if a.selected_options %}
{% for so in a.selected_options %}
{{ so.option.label }}
{% endfor %}
{% endif %}
{% endfor %}