{# app/templates/admin/admin-user-detail.html #} {% extends "admin/base.html" %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/headers.html' import detail_page_header %} {% from 'shared/macros/modals.html' import confirm_modal_dynamic %} {% block title %}Admin User Details{% endblock %} {% block alpine_data %}adminUserDetailPage(){% endblock %} {% block content %} {% call detail_page_header("adminUser?.full_name || adminUser?.username || 'Admin User Details'", '/admin/admin-users', subtitle_show='adminUser') %} @ | {% endcall %} {{ loading_state('Loading admin user details...') }} {{ error_state('Error loading admin user') }}

Quick Actions

Edit Admin User

Role

-

Status

-

Platforms

0

Created

-

Account Information

Username

@

Email

-

Email Verified

Personal Information

Full Name

-

First Name

-

Last Name

-

Activity Information

Last Login

-

Created At

-

Last Updated

-

{{ confirm_modal_dynamic( 'toggleStatusModal', 'Toggle User Status', "'Are you sure you want to ' + (adminUser?.is_active ? 'deactivate' : 'activate') + ' \"' + (adminUser?.username || '') + '\"?'", 'toggleStatus()', 'showToggleStatusModal', 'Confirm', 'Cancel', 'warning' ) }} {{ confirm_modal_dynamic( 'deleteAdminUserModal', 'Delete Admin User', "'Are you sure you want to delete admin user \"' + (adminUser?.username || '') + '\"? This action cannot be undone.'", 'confirmDeleteStep()', 'showDeleteModal', 'Delete', 'Cancel', 'danger' ) }} {{ confirm_modal_dynamic( 'deleteAdminUserFinalModal', 'Final Confirmation', "'FINAL CONFIRMATION: Are you absolutely sure you want to permanently delete \"' + (adminUser?.username || '') + '\"?'", 'deleteAdminUser()', 'showDeleteFinalModal', 'Permanently Delete', 'Cancel', 'danger' ) }} {% endblock %} {% block extra_scripts %} {% endblock %}