{% extends "layout.html" %} {% block subtitle %} Liste des votes {% endblock %} {% block body %} {% for vote in votes %}

{{ vote.title }}

{{ vote.nb_votes }} vote{{ 's' if vote.nb_votes > 1 else '' }} / {{ vote.max_votes }} ({{ vote.percent }}%)

Échéance : {{ vote.date_end }}

Groupe : {{ vote.groupname }}

Categorie : {{ vote.category }}

{% if vote.description %}

Description

{{ vote.description }}

{% endif %}
{% else %}
Il n'y a pas encore de vote. Désolé.
{% endfor %} {% endblock %}