{% extends 'equipe/_layout.html.twig' %} {% block title %}Sondages{% endblock %} {% block page_title %}Sondages{% endblock %} {% block body %} {% if is_granted('ROLE_DIRECTION') %}

Créer un sondage

Décochez pour une question interne à l'équipe uniquement (les parents ne le verront pas).
{% endif %}

Sondages

{% if lignes is empty %}
Aucun sondage.
{% else %}
{% for ligne in lignes %}

{{ ligne.sondage.question }}

{% if ligne.sondage.visibleParents %} Parents {% else %} Interne {% endif %}
{{ ligne.sondage.dateCreation|date('d/m/Y H:i') }} - {{ ligne.sondage.auteur.prenom }} {{ ligne.sondage.auteur.nom }}
{% if ligne.ouvert %} Ouvert jusqu'au {{ ligne.sondage.dateCloture|date('d/m/Y') }} {% else %} Clôturé le {{ ligne.sondage.dateCloture|date('d/m/Y') }} {% endif %}
{% if ligne.aVote or not ligne.ouvert %} {% if not ligne.aVote %}
Ce sondage est clôturé.
{% endif %} {% set totalVoix = 0 %} {% for resultat in ligne.resultats %} {% set totalVoix = totalVoix + resultat.voix %} {% endfor %}
{% for resultat in ligne.resultats %} {% set pourcentage = totalVoix > 0 ? (resultat.voix / totalVoix * 100)|round : 0 %}
{{ resultat.option.libelle }} {{ resultat.voix }} voix ({{ pourcentage }}%)
{% endfor %}
{{ totalVoix }} vote{{ totalVoix > 1 ? 's' : '' }} au total
{% else %}
{% for resultat in ligne.resultats %}
{% endfor %}
{% endif %} {% if is_granted('ROLE_DIRECTION') %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}