{% extends "layout.html" %} {% block subtitle %}{{vote.title}}{% endblock %} {% block body %}
{{ vote.nb_votes }} vote{{ 's' if vote.nb_votes > 1 else '' }} / {{ vote.max_votes }} ({{ vote.percent }}%)
Publié par
{{ vote.author }}
Début le
{{ vote.date_begin }}
Fin le
{{ vote.date_end }}
Groupe
{{ vote.groupname }}
Catégorie
{{ vote.category }}
Quorum
{{ vote.quorum * 100 }}%
{% if vote.description %}
Description :
{{ vote.description }} {% endif %} {% if attachments %}
Documents :
{% endif %}
{% if vote.is_transparent or (session.user and user.userid == session.user.id )%}
Légende : {% for value in values %} {{ value.name }} {% endfor %} somme↓ moyenne↓ {% for choice in results.list %} {{ choice.name }} {% set choice_loop = loop %} {% for value in choice.values_ %} {% if value.percent > 0 %} {{ value.percent|int }}% {% endif %} {% endfor %} {{ choice.sum }} {{ "%.2f"|format(choice.average) }} {% if loop.length > 1 and choice.id in results.medians %} ← médiane {%endif%} {% endfor %} 0% 25% 50% 75% 100%
{% endif %}
{% if vote.is_anonymous %}
Ce vote est anonymisé, les suffrages ne sont ni visibles ni modifiables.
{% endif %} {% if not vote.is_transparent %}
Ce vote n’est pas transparent, vous ne pouvez pas voir les votes des autres.
{% endif %} {% if (vote['is_anonymous'] and can_vote) or not vote['is_anonymous'] %} {% for choice in choices %} {% endfor %} {% if 'user' in session and (can_vote or (not vote['is_terminated'] and not vote['is_anonymous'])) %} {% else %} {% endif %} {% if vote.is_transparent %} {% endif %} {% if can_vote %} {% for choice in choices %} {% endfor %} {% endif %} {% if not vote['is_anonymous'] %} {% 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 and (can_vote or (not vote['is_terminated'] and not vote['is_anonymous'])) %} {% else %} {% endif %} {% endif %} {% endfor %} {% endif %}
Votant-e-s{{ choice.name }}Commentaires
{% if 'user' in session and user.userid == session.user.id %}{% endif %} {{ user.username }}{{ user.choices[choice.id].name }}Choix postérieur au suffrage{% if user.userid == session.user.id %} {% endif %} {% if user.comment %}{{user.comment}}{%endif%} {% if user.comment %}{{user.comment}}{%endif%}
{% else %} {% if not can_vote %}
Vous avez déjà voté.
{% endif %} {% endif %}
{% if vote.is_anonymous %}
{% for user in users %} {% endfor %}
{% if user.comment %}{{user.comment}}{%endif%}
{% endif %}
{% endblock %}