{% extends "base/layout.html" %} {% block page_actions %}
Back to Users Edit User
{% endblock %} {% block content %}
User Information

{{ user.full_name or user.name }}

@{{ user.name }}

  • Email {{ user.email or 'Not provided' }}
  • Mobile {{ user.mobile or 'Not provided' }}
  • User ID {{ user.user_id or 'Not set' }}
  • Status {% if user.status == 1 %} Active {% else %} Inactive {% endif %}
  • Account {% if user.locked == 1 %} Locked {% else %} Unlocked {% endif %}
  • Created {{ user.created_at.strftime('%Y-%m-%d %H:%M') if user.created_at else 'Unknown' }}
Assigned Roles {{ roles|length }}
{% if roles %}
{% for role in roles %} {% endfor %}
Role Name Description Status Assigned Date Actions
{{ role.name }}
{{ role.description or 'No description' }} {% if role.is_active %} Active {% else %} Inactive {% endif %} {% if role.is_system %} System {% endif %} {{ role.created_at.strftime('%Y-%m-%d') if role.created_at else '-' }}
{% else %}

No roles assigned

This user has not been assigned any roles yet.

{% endif %}
Additional Information
Profile Details
  • English Name: {{ user.en_name or 'Not provided' }}
  • Full Name: {{ user.full_name or 'Not provided' }}
  • External User ID: {{ user.user_id or 'Not set' }}
System Information
  • Database ID: {{ user.id }}
  • Created: {{ user.created_at.strftime('%Y-%m-%d %H:%M:%S') if user.created_at else 'Unknown' }}
  • Last Updated: {{ user.updated_at.strftime('%Y-%m-%d %H:%M:%S') if user.updated_at else 'Unknown' }}
{% endblock %} {% block extra_scripts %} {% endblock %}