{% extends "reports/base.html" %} {% load i18n %} {% load base_filters %} {% block content %}
{% 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 }} |