{% extends "reports/base.html" %} {% load i18n %} {% load base_filters %} {% block content %}

{% trans "Top Spenders" %} ({{ SITE_GLOBAL_CURRENCY }})

{% trans "Lists the top 20 users with the highest expenses." %} {% for entry in entry_list %} {% endfor %}
{% trans "#" %} {% trans "Username" %} {% trans "UserID" %} {% trans "Last Name" %} {% trans "First Name" %} {% trans "Email" %} {% trans "Total Expenses" %}
{{ forloop.counter }} {{ entry.user.username }} {{ entry.user.pk }} {{ entry.user.last_name }} {{ entry.user.first_name }} {{ entry.user.email|obfuscate_email }} {{ entry.invoices.total__sum|format_currency }}
{% endblock content %}