{% extends 'admin/layout.html.twig' %} {% block title %}Audit Log - KitscoApp{% endblock %} {% block page_title %}Audit Log{% endblock %} {% block content %}
Track all user actions and system changes
Showing {{ ((pagination.page - 1) * pagination.perPage) + 1 }}-{{ min(pagination.page * pagination.perPage, pagination.total) }} of {{ pagination.total|number_format }} entries
| Date/Time | User | Action | Entity | Description | IP Address | Details |
|---|---|---|---|---|---|---|
|
{{ log.occurredAt|date('d M Y') }}
{{ log.occurredAt|date('H:i:s') }}
|
{{ log.performedBy.fullName }}
{{ log.performedBy.email }}
|
{{ log.actionType.label }} |
{{ log.entityType }}
{% if log.entityLabel %}
{{ log.entityLabel }}
{% endif %}
|
{{ log.description|default('-') }} | {{ log.ipAddress|default('-') }} | {% if log.oldValues or log.newValues %} {% else %} - {% endif %} |
|
{% if log.oldValues %}
Previous Values{{ log.oldValues|json_encode(constant('JSON_PRETTY_PRINT')) }}
New Values{{ log.newValues|json_encode(constant('JSON_PRETTY_PRINT')) }}
|
||||||
|
No audit logs found Try adjusting your filters |
||||||