3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-18 07:21:47 +00:00
coope/gestion/templates/gestion/ranking.html
2019-09-23 17:50:25 +02:00

116 lines
3 KiB
HTML

{% extends "base.html" %}
{%load static %}
{%block entete%}Classement{%endblock%}
{% block navbar %}
<ul>
<li><a href="#first">Meilleurs consommateurs (débit)</a></li>
<li><a href="#second">Meilleurs consommateurs (alcool)</a></li>
<li><a href="#third">Classement par produit</a></li>
</ul>
{% endblock %}
{% block content %}
<section id="first" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>Meilleurs consommateurs (débit)</h2>
</header>
<div class="row">
<div class="8u 12u$(medium)">
<table>
<thead>
<tr>
<th>Place</th>
<th>Pseudo</th>
<th>Debit</th>
<th>Débit direct (non pris en compte pour le classement)</th>
</tr>
</thead>
<tbody>
{%for customer in bestBuyers%}
<tr>
<th>{{ forloop.counter }}</th>
<th><a href="{% url 'users:profile' customer.pk %}">{{ customer.username }}</a></th>
<th>{{ customer.profile.debit }} €</th>
<th>{{ customer.profile.direct_debit }} €</th>
</tr>
{%endfor%}
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section id="second" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>Meilleurs consommateurs (alcool)</h2>
</header>
<div class="row">
<div class="8u 12u$(medium)">
<table>
<thead>
<tr>
<th>Place</th>
<th>Pseudo</th>
<th>Nombre de kilos ingérés</th>
</tr>
</thead>
<tbody>
{% for customer in bestDrinkers %}
<tr>
<th>{{ forloop.counter }}</th>
<th><a href="{% url 'users:profile' customer.pk %}">{{ customer.username }}</a></th>
<th>{{ customer.profile.alcohol }}</th>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section id="third" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>Classement par produit</h2>
</header>
<div class="row">
<div class="8u 12u$(medium)">
<form action="" method="POST">
{% csrf_token %}
{{form}}
<br><br>
<button type="submit" class="button">Afficher</button>
</form>
{% if product_ranking %}
<table>
<thead>
<tr>
<th>Place</th>
<th>Pseudo</th>
<th>Quantités consommées</th>
</tr>
</thead>
<tbody>
{% for customer in product_ranking %}
<tr>
<th>{{ forloop.counter }}</th>
<th><a href="{% url 'users:profile' customer.0.pk %}">{{ customer.0.username }}</a></th>
<th>{{ customer.1 }}</th>
</tr>
{%endfor%}
</tbody>
</table>
{% endif %}
</div>
</div>
</div>
</div>
</section>
{{form.media}}
{%endblock%}