{% extends 'base.html' %} {% load static %} {% block title %}Staff Details - {{ admin.get_full_name }}{% endblock %} {% block content %}
Detailed information for {{ admin.get_full_name }}
{{ admin.get_role_display }}
{{ admin.username }}
{{ admin.email|default:"Not provided" }}
{{ admin.phone_number }}
{{ admin.date_joined|date:"F d, Y" }}
{% if admin.last_login %} {{ admin.last_login|date:"F d, Y H:i" }} {% else %} Never logged in {% endif %}
{% if admin.is_active %} Active {% else %} Inactive {% endif %}
Actions
Active
| Action | Description | IP Address | Date |
|---|---|---|---|
| {% if log.action == 'login' %} Login {% elif log.action == 'logout' %} Logout {% elif log.action == 'create' %} +Create {% elif log.action == 'update' %} âī¸Update {% elif log.action == 'delete' %} đī¸Delete {% else %} {{ log.action|title }} {% endif %} | {{ log.description }} | {{ log.ip_address|default:"-" }} | {{ log.accessed_at|date:"M d, Y H:i" }} |
This user hasn't performed any actions yet.