1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {% extends "layout.html" %}
- {% block subtitle %}Administrer les votes{% endblock %}
- {% block body %}
- <div class="row">
- <a class="pull-right btn btn-primary btn-small" href="{{ url_for('admin_vote_add') }}">+ Nouveau vote</a>
- {% 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><span {% if vote.date_end < today %}style="color: red;"{% endif %}>{{ vote.date_end }}</span></td>
- <td>{{ vote.groupname }}</td>
- <td>{{ vote.category }}</td>
- <td>
- {% if vote.is_transparent %}<span class="label">transparent</span>{% endif %}
- {% if vote.is_anonymous %}<span class="label">anonymous</span>{% endif %}
- {% if vote.is_public %}<span class="label">public</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>
- {% if can_delete_votes %}<a href="#delete{{ vote.voteid }}" data-toggle="modal" class="btn btn-mini btn-danger">Supprimer</a>{% endif %}
- </td>
- </tr>
- <div class="modal hide fade" id="delete{{ vote.voteid }}">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal">×</button>
- <h3>Suppression d'uun vote</h3>
- </div>
- <div class="modal-body">
- <p>Voulez-vous vraiment supprimer le vote <strong>{{ vote.title }}</strong> ?</p>
- </div>
- <div class="modal-footer">
- <a href="{{ url_for('admin_vote_del', idvote=vote.voteid) }}" class="btn btn-danger">Confirmer</a>
- <a href="#" class="btn" data-dismiss="modal">Annuler</a>
- </div>
- </div>
- {% endfor %}
- </tbody>
- </table>
- <a class="pull-right btn btn-primary btn-small" href="{{ url_for('admin_vote_add') }}">+ Nouveau vote</a>
- <p>
- <strong>Légende :</strong>
- <ul class="unstyled">
- <li><span class="label">transparent</span> : Les votants peuvent voir les votes des autres</li>
- <li><span class="label">anonymous</span> : Les suffrages du vote sont déliés de l’identité de leur votant</li>
- <li><span class="label">public</span> : Tout le monde peut voir le vote</li>
- </ul>
- </p>
- {% endif %}
- </div>
- {% endblock %}
|