{% extends 'base.html' %} {% load static %} {% block title %}Access Logs{% endblock %} {% block content %}
View detailed audit trail of user activities and system access
| User | Action | Module | Description | IP Address | Timestamp |
|---|---|---|---|---|---|
|
{% if log.user.selfie %}
👤
{% endif %}
{{ log.user.get_full_name }}
{{ log.user.get_role_display }}
|
{% if log.action == 'access_denied' %} Access Denied {% elif log.action == 'view' %} View {% elif log.action == 'create' %} +Create {% elif log.action == 'edit' %} ✏️Edit {% elif log.action == 'delete' %} 🗑️Delete {% else %} {{ log.action|title }} {% endif %} | {{ log.module|title }} |
{{ log.description }}
|
{{ log.ip_address|default:"-" }} | {{ log.accessed_at|date:"M d, Y H:i:s" }} |
No activity has been logged yet.