{% include '@Survey/frontend/_survey_assets.html.twig' %} {% include '@Survey/frontend/_survey_branding.html.twig' %} {% set moduleHeadline = (headline is iterable ? headline.text|default('') : headline|default(''))|striptags|trim %}
{% if moduleHeadline %}

{{ moduleHeadline }}

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

{{ survey.title|striptags|trim }}

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

{{ (survey.description|striptags|trim) ?: '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|striptags|trim }}

{{ question.totalAnswers }} Antworten {{ question.responseRate }}% Ruecklauf
{% if question.description|striptags|trim %}

{{ question.description|striptags|trim }}

{% endif %}
{% if question.chart %}
{% endif %}
{% if question.type in ['yes_no_maybe', 'choice'] %}
{% for option in question.options %}
{{ option.label|striptags|trim }} {{ 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|striptags|trim }} {{ 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|striptags|trim }} {{ option.count }} {{ option.percentage }}%
{% endfor %}
{% endif %}
{% for response in question.responses %}
{{ response|striptags|trim|nl2br }}
{% else %}

Noch keine Freitextantworten vorhanden.

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