{% extends "base.html" %} {% block title %}Edit User - QR Code Management{% endblock %} {% block content %}

Edit User

Update user information and permissions

User's display name in the system
Primary email for notifications
Username cannot be changed
Changes role permissions immediately

Password Management

Only enter a password if you want to change it

Account Status

Current Status: {{ 'Active' if user.active_status else 'Inactive' }}
Account Created: {{ user.created_date.strftime('%B %d, %Y at %H:%M') }}
{% if user.creator %}
Created By: {{ user.creator.full_name }}
{% endif %}
Back to Users {% if not user.active_status %} Reactivate User {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}