54 lines
2.7 KiB
Twig
54 lines
2.7 KiB
Twig
{% include '@Survey/frontend/_survey_assets.html.twig' %}
|
|
{% include '@Survey/frontend/_survey_branding.html.twig' %}
|
|
|
|
{% set moduleHeadline = headline is iterable ? headline.text|default('') : headline|default('') %}
|
|
|
|
<section class="survey-shell survey-grid">
|
|
{% if moduleHeadline %}
|
|
<header>
|
|
<h2>{{ moduleHeadline }}</h2>
|
|
</header>
|
|
{% endif %}
|
|
|
|
{% if loginRequired %}
|
|
<div class="survey-alert warning">Dieser Bereich verwendet den normalen Contao-Mitgliederlogin. Bitte binden Sie das Modul auf einer geschuetzten Seite oder mit einer separaten Login-Seite ein.</div>
|
|
{% else %}
|
|
<div class="survey-button-row">
|
|
{% if createUrl %}
|
|
<a class="survey-button primary" href="{{ createUrl }}">Neue Umfrage anlegen</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="survey-grid">
|
|
{% for survey in surveys %}
|
|
<article class="survey-card">
|
|
<div class="survey-meta">
|
|
<h3>{{ survey.title }}</h3>
|
|
<span class="survey-badge {{ survey.published ? 'success' : 'neutral' }}">{{ survey.published ? 'veroeffentlicht' : 'Entwurf' }}</span>
|
|
{% if survey.isLocked %}
|
|
<span class="survey-badge warning">gesperrt</span>
|
|
{% endif %}
|
|
</div>
|
|
<p>{{ survey.description ?: 'Keine Beschreibung hinterlegt.' }}</p>
|
|
<div class="survey-meta">
|
|
<span class="survey-badge neutral">{{ survey.questionCount }} Fragen</span>
|
|
<span class="survey-badge neutral">{{ survey.answerCount }} Antworten</span>
|
|
</div>
|
|
<div class="survey-button-row">
|
|
{% if survey.editUrl %}
|
|
<a class="survey-button primary" href="{{ survey.editUrl }}">Bearbeiten</a>
|
|
{% endif %}
|
|
{% if survey.publicUrl %}
|
|
<a class="survey-button secondary" href="{{ survey.publicUrl }}" target="_blank" rel="noreferrer">Oeffentliche Ansicht</a>
|
|
{% endif %}
|
|
{% if survey.resultsUrl %}
|
|
<a class="survey-button secondary" href="{{ survey.resultsUrl }}" target="_blank" rel="noreferrer">Ergebnisse anzeigen</a>
|
|
{% endif %}
|
|
</div>
|
|
</article>
|
|
{% else %}
|
|
<div class="survey-card">Dem eingeloggten Mitglied ist aktuell keine Umfrage zugewiesen.</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</section> |