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

Edit User: {{ user.username }}

{% csrf_token %}
Basic Information
Username cannot be changed
Leave blank to keep current password
Additional Information
Assign Roles
{% if roles %} {% for role in roles %}
{% endfor %} {% else %}

No roles available.

{% endif %}
Cancel
User Information

Created:
{{ user.date_joined|date:"d M Y H:i" }}

Last Login:
{% if user.last_login %} {{ user.last_login|date:"d M Y H:i" }} {% else %} Never {% endif %}

Status:
{% if user.is_active %} Active {% else %} Inactive {% endif %}

Security Notes
  • Username cannot be changed for security reasons
  • Leave password blank to keep current password
  • Inactive users cannot log in
  • Changes take effect immediately
{% endblock %}