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

{{ vote.title }}

{% if vote.nb_votes == 0 %}
{{ vote.nb_votes }} / {{ vote.max_votes }}
{% else %}
{{ vote.nb_votes }} / {{ vote.max_votes }}
{% endif %}

Deadline : {{ vote.date_end }}

Groupe : {{ vote.groupname }}

Categorie : {{ vote.category }}

{% if vote.description %}

Description

{{ vote.description }}

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