{% extends "base.html" %} {%load static %} {%block entete%}Classement{%endblock%} {% block nav %} {% endblock %} {% block content %}

Meilleurs consommateurs (débit)

{%for customer in bestBuyers%} {%endfor%}
Place Pseudo Debit
{{ forloop.counter }} {{ customer.username }} {{ customer.profile.debit }}€

Meilleurs consommateurs (alcool)

{% for customer in bestDrinkers %} {%endfor%}
Place Pseudo Nombre de kilos ingérés
{{ forloop.counter }} {{ customer.0.username }} {{ customer.1 }}
{%endblock%}