{% extends "layout.html" %} {% block body %}
{% if not vote.is_transparent %}
Ce sondage n'est pas transparent, vous ne pouvez pas voir les votes des autres.
{% endif %} {% for choice in choices %} {% endfor %} {% if 'user' in session %} {% endif %} {% for user in users %} {% if vote.is_transparent or (session.user and user.userid == session.user.id )%} {% for choice in choices %} {% if choice.id in user.choices %} {% else %} {% endif %} {% endfor %} {% if 'user' in session %} {% endif %} {% endif %} {% endfor %} {% if can_vote %} {% if vote.is_multiplechoice %} {% for choice in choices %} {% endfor %} {% else %} {% for choice in choices %} {% endfor %} {% endif %} {% endif %} {% if vote.is_transparent %} {% for choice in choices %} {% endfor %} {% if 'user' in session %} {% endif %} {% endif %}
{{ choice.name }}
{% if 'user' in session and user.userid == session.user.id %}{% endif %} {{ user.username }}{% if user.userid == session.user.id %} {% endif %}
Somme{{ choice.nb }}

Informations

{% if vote.nb_votes == 0 %}
{{ vote.nb_votes }} / {{ vote.max_votes }}
{% else %}
{{ vote.nb_votes }} / {{ vote.max_votes }}
{% endif %}
Publié par
{{ vote.author }}
Début le
{{ vote.date_begin }}
Deadline le
{{ vote.date_end }}
Groupe
{{ vote.groupname }}
Catégorie
{{ vote.category }}
{% if vote.description %}
Description :
{{ vote.description }} {% endif %} {% if attachments %}
Documents :
{% endif %}
{% endblock %}