kpsul/bda/templates/bda-attrib-extra.html

29 lines
621 B
HTML
Raw Permalink Normal View History

2013-09-05 22:21:32 +02:00
{% extends "bda-attrib.html" %}
{% block extracontent %}
<h2>Attributions (détails)</h2>
2016-07-14 19:29:15 +02:00
<h3 class="horizontal-title">Token :</h3>
<pre>{{ token }}</pre>
2016-07-14 19:29:15 +02:00
<h3 class="horizontal-title">Placés : {{ total_slots }} ; Déçus : {{ total_losers }}</h3>
2013-09-05 22:21:32 +02:00
<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 %}