12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {% extends "layout.html" %}
- {% block subtitle %}Administrer les votes{% endblock %}
- {% block body %}
- <div class="row">
- <hr />
- {% if not votes %}
- <div class="alert">Il n'y a aucun vote.</div>
- {% else %}
- <table class="table table-striped">
- <thead>
- <tr>
- <th>Nom</th>
- <th>Statut</th>
- <th>Deadline</th>
- <th>Groupe</th>
- <th>Catégorie</th>
- <th>Options</th>
- <th>Actions</th>
- </tr>
- </thead>
- <tbody>
- {% for vote in votes %}
- <tr>
- <td>{{ vote.title }}</td>
- <td>{% if vote.is_terminated %}<span class="label label-success">Terminé</span>{% else %}{% if vote.is_open %}<span class="label label-info">Ouvert</span>{% else %}<span class="label label-important">Fermé</span>{% endif %}{% endif %}</td>
- <td>{{ vote.date_end }}</td>
- <td>{{ vote.groupname }}</td>
- <td>{{ vote.category }}</td>
- <td>
- {% if vote.is_transparent %}<span class="label">transparent</span>{% endif %}
- {% if vote.is_public %}<span class="label">public</span>{% endif %}
- {% if vote.is_multiplechoice %}<span class="label">choix multiple</span>{% endif %}
- </td>
- <td>
- <a href="{{ url_for('vote', idvote=vote.voteid) }}" class="btn btn-success btn-mini">Voir</a>
- <a href="{{ url_for('admin_vote_edit', voteid=vote.voteid) }}" class="btn btn-mini">Éditer</a>
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- <p>
- <strong>Légende :</strong>
- <ul class="unstyled">
- <li><span class="label">transparent</span> : Les utilisateurs peuvent voir les votes des autres</li>
- <li><span class="label">public</span> : Tout le monde peut voir le vote</li>
- <li><span class="label">choix multiple</span> : Les utilisateurs peuvent effectuer plusieurs choix</li>
- </ul>
- </p>
- {% endif %}
- {% endblock %}
|