{% include '@Survey/frontend/_survey_assets.html.twig' %} {% include '@Survey/frontend/_survey_branding.html.twig' %}
{% if headline.text %}

{{ headline.text }}

{% endif %} {% if errorMessage %}
{{ errorMessage }}
{% elseif survey %}

{{ survey.title }}

{{ completedSubmissionCount }} abgeschlossene Teilnahmen {{ questionResults|length }} Fragen

{{ survey.description ?: 'Keine Beschreibung hinterlegt.' }}

{% if downloadUrl or pdfDownloadUrl %}
{% if downloadUrl %} Ergebnisse als Excel herunterladen {% endif %} {% if pdfDownloadUrl %} Ergebnisse als PDF herunterladen {% endif %}
{% endif %}
{% for question in questionResults %}

{{ question.question }}

{{ question.totalAnswers }} Antworten {{ question.responseRate }}% Ruecklauf
{% if question.description %}

{{ question.description }}

{% endif %}
{% if question.chart %}
{% endif %}
{% if question.type in ['yes_no_maybe', 'choice'] %}
{% for option in question.options %}
{{ option.label }} {{ option.count }} {{ option.percentage }}%
{% endfor %}
{% elseif question.type == 'range' %}
Minimum {{ question.minimum is not null ? question.minimum : '-' }}
Maximum {{ question.maximum is not null ? question.maximum : '-' }}
Durchschnitt {{ question.average is not null ? question.average : '-' }}
{% for option in question.distribution %}
{{ option.label }} {{ option.count }} {{ option.percentage }}%
{% else %}

Noch keine Bewertungen vorhanden.

{% endfor %}
{% else %} {% if question.responseSummary is defined and question.responseSummary %}
{% for option in question.responseSummary %}
{{ option.label }} {{ option.count }} {{ option.percentage }}%
{% endfor %}
{% endif %}
{% for response in question.responses %}
{{ response|nl2br }}
{% else %}

Noch keine Freitextantworten vorhanden.

{% endfor %}
{% endif %}
{% else %}
Fuer diese Umfrage sind noch keine Fragen angelegt.
{% endfor %}
{% endif %}