{% extends "reports/base.html" %} {% load base_filters %} {% block content %}
{% trans "Lists all users with a security level of Superuser. This can be helpful as a cross reference when auditing." %}
{% trans "#" %} | {% trans "Username" %} | {% trans "User Id" %} | {% trans "Lastname" %} | {% trans "Firstname" %} | {% trans "Email" %} | {% trans "Phone" %} |
---|---|---|---|---|---|---|
{{ forloop.counter }} | {{ profile.user.username }} | {{ profile.user.pk }} | {{ profile.user.last_name }} | {{ profile.user.first_name }} | {{ profile.user.email|obfuscate_email }} | {{ profile.phone }} |