forked from DGNum/gestioCOF
443b732859
Après le lancement du tirage, l'attribut `enable_do_tirage` est automatiquement passé à `False`
49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
{% extends "base_title.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block extra_head %}
|
|
<link type="text/css" rel="stylesheet" href="{% static "css/bda.css" %}" />
|
|
{% endblock %}
|
|
|
|
{% block realcontent %}
|
|
|
|
<h1>Attributions</h1>
|
|
|
|
<br />
|
|
<p class="success">Pour raison de sécurité, le lancement du tirage
|
|
a été désactivé. Vous pouvez le réactiver dans
|
|
l'<a href="{% url "admin:index" %}">interface admin</a></p>
|
|
|
|
<h2>Token :</h2>
|
|
<pre>{{ token }}</pre>
|
|
<h2>Placés : {{ total_slots }} ; Déçus : {{ total_losers }}</h2>
|
|
{% if user.profile.is_buro %}<h2>Déficit total: {{ total_deficit }} €, Opéra: {{ opera_deficit }} €, Attribué: {{ total_sold }} €</h2>{% endif %}
|
|
<h2>Temps de calcul : {{ duration|floatformat }}s</h2>
|
|
|
|
{% for show, members, losers in results %}
|
|
<div class="attribresult">
|
|
<h2>{{ show.title }} - {{ show.date_no_seconds }} @ {{ show.location }}</h2>
|
|
<p>
|
|
<strong>{{ show.nrequests }} demandes pour {{ show.slots }} places</strong>
|
|
{{ show.price }}€ par place{% if user.profile.is_buro and show.nrequests < show.slots %}, {{ show.deficit }}€ de déficit{% endif %}
|
|
</p>
|
|
Places :
|
|
<ul>
|
|
{% for member, rank, origrank, double in members %}
|
|
<li>{{ member.user.get_full_name }} <span class="details">(souhait {{ origrank }} — rang {{ rank }})</span></li>
|
|
{% endfor %}
|
|
</ul>
|
|
Déçus :
|
|
{% if not losers %}/{% else %}
|
|
<ul class="losers">
|
|
{% for member, rank, origrank, double in losers %}
|
|
{% if not forloop.first %} ; {% endif %}
|
|
<li>{{ member.user.get_full_name }} <span class="details">(souhait {{ origrank }} — rang {{ rank }})</span></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
{% block extracontent %}
|
|
{% endblock %}
|
|
{% endblock %}
|