Administration des users et des votes
[cavote.git] / templates / admin_votes.html
1 {% extends "layout.html" %}
2 {% block subtitle %}Administrer les votes{% endblock %}
3 {% block body %}
4 <div class="row">
5 <hr />
6 {% if not votes %}
7 <div class="alert">Il n'y a aucun vote.</div>
8 {% else %}
9 <table class="table table-striped">
10 <thead>
11 <tr>
12 <th>Nom</th>
13 <th>Statut</th>
14 <th>Deadline</th>
15 <th>Groupe</th>
16 <th>Catégorie</th>
17 <th>Options</th>
18 <th>Actions</th>
19 </tr>
20 </thead>
21 <tbody>
22 {% for vote in votes %}
23 <tr>
24 <td>{{ vote.title }}</td>
25 <td>{% if vote.is_open %}<span class="label label-success">Ouvert</span>{% else %}<span class="label label-important">Fermé</span>{% endif %}</td>
26 <td>{{ vote.date_end }}</td>
27 <td>{{ vote.rolename }}</td>
28 <td>{{ vote.category }}</td>
29 <td>
30 {% if vote.is_transparent %}<span class="label">transparent</span>{% endif %}
31 {% if vote.is_public %}<span class="label">public</span>{% endif %}
32 {% if vote.is_multiplechoice %}<span class="label">choix multiple</span>{% endif %}
33 </td>
34 <td><a href="{{ url_for('edit_vote', voteid=vote.id) }}" class="btn btn-mini">Éditer</a></td>
35 </tr>
36 {% endfor %}
37 </tbody>
38 </table>
39 <p>
40 <strong>Légende :</strong>
41 <ul class="unstyled">
42 <li><span class="label">transparent</span> : Les utilisateurs peuvent voir les votes des autres</li>
43 <li><span class="label">public</span> : Tout le monde peut voir le vote</li>
44 <li><span class="label">choix multiple</span> : Les utilisateurs peuvent effectuer plusieurs choix</li>
45 </ul>
46 </p>
47 {% endif %}
48 {% endblock %}
49