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

User Information

First and last name
Must be unique in the system
Username cannot be changed
Changes role permissions immediately

Password Management

Only enter a password if you want to change it
Must match the new password above

User Status Information

Current Status: {{ 'Active' if user.active_status else 'Inactive' }}
Account Created: {{ user.created_date.strftime('%B %d, %Y at %I:%M %p') if user.created_date else 'Unknown' }}
Created By: {{ user.creator.full_name if user.creator else 'System' }}
Last Login: {% if user.last_login_date %} {{ user.last_login_date.strftime('%B %d, %Y at %I:%M %p') }} {% else %} Never logged in {% endif %}
Back to Users
{% endblock %} {% block extra_scripts %} {% endblock %}