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

{% trans %}Permanencies{% endtrans %}

{% for perm in perm_time %}
{{ perm["counter__name"] }} : {{ perm["total"]|format_timedelta }}
{% endfor %}
Total :{{ total_perm_time|format_timedelta }}
{% endif %}

{% trans %}Buyings{% endtrans %}

{% for sum in purchase_sums %}
{{ sum["counter__name"] }} {{ sum["total"] }} €
{% endfor %}
Total : {{ total_purchases }} €

{% trans %}Product top 15{% endtrans %}

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