{% extends "frontend/_layout.html.twig" %} {# CONTENT #} {% block content %}
{% if survey.type == 1 %}

{{ 'preselections' |trans({}, 'survey') }}

{% elseif survey.type == 2 %}

{{ 'test' |trans({}, 'survey') }}

{% else %}

{{ 'survey' |trans({}, 'survey') }}

{% endif %}

{{ survey.name }}

{{ survey.statusFormatted |trans({}, 'survey') }} - #{{ survey.idSurvey }}
{{ survey.description | raw }}
{% if survey.status == 2 and survey.type == 2 %} {{ include('Frontend/FocusGroup/_focus_block.html.twig') }} {% endif %} {% if survey.links | length > 0 %}

{{ 'survey' |trans({}, 'survey') }}

{% for link in survey.links %} {% if history[link.id] is not defined %}
{{ link.name }}
{% endif %} {% endfor %} {% for link in survey.links %} {% if history[link.id] is defined %}
{{ link.name }}
{% endif %} {% endfor %} {% if survey.links is not empty %}
{% endif %}
{% endif %} {% if survey.status != 2 and survey.type == 2 %} {{ include('frontend/FocusGroup/_focus_block.html.twig') }} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}