{% extends "PolytechJMBundle:Default:layout.html.twig" %} {% block body %}

Election : {{ entity.nom }}

Statut : {% if entity.finished %}Terminée{% elseif entity.started %}En cours{% else %}Pas commencée{% endif %}

Retour à la liste des élections {% if not entity.started %} Commencer le vote {% elseif not entity.finished %} Terminer le vote {% endif %} {% if not entity.started %} Gestion des électeurs : {% if entity.electeurs|length == 0 %} Aucun électeur {% elseif entity.electeurs|length == 1 %} 1 électeur {% else %} {{ entity.electeurs|length }} électeurs {% endif %} {% elseif not entity.finished %} Imprimer les codes personnels {% endif %}
{% if not entity.started %}{% endif %} {% for candidat in entity.candidats %} {% if not entity.started %} {% endif %} {% endfor %}
CandidatsActions
{{ candidat.nom }} Supprimer
{% if not entity.started %} Ajouter un candidat {% endif %}
{% if not entity.started %}{% endif %} {% for mention in entity.mentions %} {% if not entity.started %} {% endif %} {% endfor %}
Mentions (de la plus favorable à la moins favorable)Actions
{{ mention.nom }} Supprimer
{% if not entity.started %} Ajouter une mention {% endif %}
{% endblock %}