{% extends "base.html" %}
{%load static %}
{%block entete%}Classement{%endblock%}
{% block navbar %}
{% endblock %}
{% block content %}
Meilleurs consommateurs (débit)
Place |
Pseudo |
Debit |
{%for customer in bestBuyers%}
{{ forloop.counter }} |
{{ customer.username }} |
{{ customer.profile.debit }}€ |
{%endfor%}
Meilleurs consommateurs (alcool)
Place |
Pseudo |
Nombre de kilos ingérés |
{% for customer in bestDrinkers %}
{{ forloop.counter }} |
{{ customer.0.username }} |
{{ customer.1 }} |
{%endfor%}
{% if product_ranking %}
Place |
Pseudo |
Quantités consommées |
{% for customer in product_ranking %}
{{ forloop.counter }} |
{{ customer.0.username }} |
{{ customer.1 }} |
{%endfor%}
{% endif %}
{{form.media}}
{%endblock%}