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

{% trans "Lists the top 10 users with the highest expenses." %}

{% for user in entry_list %} {% endfor %}
{% trans "#" %} {% trans "Username" %} {% trans "UserID" %} {% trans "Last Name" %} {% trans "First Name" %} {% trans "Email" %} {% trans "Total Expenses" %}
{{ forloop.counter }} {{ user.username }} {{ user.pk }} {{ user.last_name }} {{ user.first_name }} {{ user.email|obfuscate_email }} {{ user.profile.total_spend|format_currency }}  

{% endblock content %}