{% extends "base.html" %} {% load static %} {% load i18n %} {% load bootstrap4 %} {% block title %} {% trans "Users" %} {% endblock %} {% block content %}
{% trans "Last name" %} | {% trans "First name" %} | {% trans "Email address" %} | {% trans "Information" %} | {% trans "Action" %} |
---|---|---|---|---|
{{ userprofile.last_name }} | {{ userprofile.first_name }} | {{ userprofile.email }} | {% include "user_management/userprofile_badges.html" with userprofile=userprofile %} | {% trans "Edit" %} {% if perms.user_management.delete_userprofile %} {% trans "Delete" %} {% endif %} |