kpsul/bda/templates/bda-attrib-extra.html
Martin Pépin dfd4fb7d83 Tirage utilisable et plus joli
- Ajout de balises `<pre>` pour mettre en valeur le token
- On remplace la condition sur les utilisateurs par le décorateur
  `@buro_required`
2016-06-05 14:03:32 +02:00

29 lines
570 B
HTML

{% extends "bda-attrib.html" %}
{% block extracontent %}
<h1>Attribution (détails)</h1>
<h2>Token :</h2>
<pre>{{ token }}</pre>
<h2>Placés : {{ total_slots }} ; Déçus : {{ total_losers }}</h2>
<table>
{% for member, shows in members2 %}
<tr>
<td>{{ member.user.get_full_name }}</td>
<td>{{ member.user.email }}</td>
<td>Total: {{ member.total }}€</td>
<td style="width: 120px;"></td>
</tr>
{% for show in shows %}
<tr>
<td></td>
<td></td>
<td>{{ show }}</td>
<td></td>
</tr>
{% endfor %}
{% endfor %}
</table>
{% endblock %}