{% extends "core/base.jinja" %} {% block title %} {% trans user_name=profile.get_display_name() %}{{ user_name }}'s stats{% endtrans %} {% endblock %} {% block content %} {% if profile.permanencies %}

{% trans %}Permanencies{% endtrans %}

Total: {{ total_perm_time }}

Foyer: {{ total_foyer_time }}

MDE: {{ total_mde_time }}

La Gommette: {{ total_gommette_time }}

{% endif %}

{% trans %}Buyings{% endtrans %}

Foyer: {{ total_foyer_buyings }} €

MDE: {{ total_mde_buyings }} €

La Gommette: {{ total_gommette_buyings }} €

{% trans %}Product top 10{% endtrans %}

{% for p in top_product %} {% endfor %}
{% trans %}Product{% endtrans %} {% trans %}Quantity{% endtrans %}
{{ p['product__name'] }} {{ p['product_sum'] }}
{% endblock %}