{% extends 'parents/_layout.html.twig' %} {% block title %}Sondages{% endblock %} {% block page_title %}Sondages{% endblock %} {% block body %} {% if lignes is empty %}
Aucun sondage.
{% else %}
{% for ligne in lignes %}

{{ ligne.sondage.question }}

{% 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 %}
{% endfor %}
{% endif %} {% endblock %}