admin_votes.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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_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>
  26. <td>{{ vote.date_end }}</td>
  27. <td>{{ vote.groupname }}</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>
  35. <a href="{{ url_for('vote', idvote=vote.voteid) }}" class="btn btn-success btn-mini">Voir</a>
  36. <a href="{{ url_for('admin_vote_edit', voteid=vote.voteid) }}" class="btn btn-mini">Éditer</a>
  37. </td>
  38. </tr>
  39. {% endfor %}
  40. </tbody>
  41. </table>
  42. <p>
  43. <strong>Légende :</strong>
  44. <ul class="unstyled">
  45. <li><span class="label">transparent</span> : Les utilisateurs peuvent voir les votes des autres</li>
  46. <li><span class="label">public</span> : Tout le monde peut voir le vote</li>
  47. <li><span class="label">choix multiple</span> : Les utilisateurs peuvent effectuer plusieurs choix</li>
  48. </ul>
  49. </p>
  50. {% endif %}
  51. {% endblock %}