{% extends "module_base.html" %} {% load static %} {% block title %}Delete User - {{ user.username }}{% endblock %} {% block content %}

Delete User: {{ user.username }}

Warning!

You are about to delete the user {{ user.username }}. This action cannot be undone.

The following data will be permanently deleted:

  • User account and profile information
  • All role assignments
  • All permission assignments
  • Any data associated with this user
User Information:
Username: {{ user.username }}
Full Name: {{ user.first_name }} {{ user.last_name }}
Email: {{ user.email|default:"-" }}
Status: {% if user.is_active %} Active {% else %} Inactive {% endif %}
Roles: {% for user_role in user.userrole_set.all %} {{ user_role.role.name }} {% empty %} No roles assigned {% endfor %}
Cancel
{% csrf_token %}
{% endblock %}