{% extends 'admin/layout.html.twig' %} {% block title %}{{ entityType }} #{{ entityId }} History - KitscoApp{% endblock %} {% block page_title %}{{ entityType }} History{% endblock %} {% block content %}
Activity history for {{ entityType }} #{{ entityId }}
| Date/Time | User | Action | Description | Details |
|---|---|---|---|---|
|
{{ log.occurredAt|date('d M Y') }}
{{ log.occurredAt|date('H:i:s') }}
|
{{ log.performedBy.fullName }}
{{ log.performedBy.email }}
|
{{ log.actionType.label }} | {{ log.description|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 history found for this {{ entityType }} |
||||