{% extends "base.html" %} {% load i18n %} {% load bootstrap %} {% block title %} {% blocktranslate trimmed %}Answers for {{ shift }}{% endblocktranslate %} {% endblock %} {% block content %}

{% blocktranslate trimmed %}Answers for {{ shift }}{% endblocktranslate %}

{% translate "This page only shows answers of confirmed participants. You can see the answers of other participants in the disposition view." as alert %} {% render_alert alert "info" False %} {% for question in question_data %}

{{ question.question.question_text }}

{{ question.question.get_type_display }}, {{ question.question.required|yesno:_("required,optional") }}

{% if question.aggregated_answers %} {% if question.aggregation_type == "list" %} {% else %} {% for answer, count in question.aggregated_answers.items %} {% endfor %}
{% translate "Answer" %} {% translate "Count" %}
{{ answer }} {{ count }}
{% endif %} {% else %}

{% translate "No answers so far" %}

{% endif %} {% endfor %} {% translate "Back to event" %} {% endblock %}