{% load static %} {% if audit_logs %}
{% for log in audit_logs %}
{% if log.event_type == 'CREATE' %} {% elif log.event_type == 'UPDATE' %} {% elif log.event_type == 'DELETE' %} {% elif log.event_type == 'VIEW' %} {% elif log.event_type == 'LOGIN' %} {% elif log.event_type == 'LOGOUT' %} {% else %} {% endif %} {{ log.event_type }} {% if log.event_category %} {{ log.event_category }} {% endif %}
{{ log.action }}
{% if log.description %}
{{ log.description }}
{% endif %} {% if log.object_repr %}
Object: {{ log.object_repr }}
{% endif %}
{{ log.timestamp|date:"M d, Y H:i:s" }} {% if log.ip_address %} {{ log.ip_address }} {% endif %}
{% if log.severity == 'HIGH' %} High {% elif log.severity == 'MEDIUM' %} Medium {% elif log.severity == 'LOW' %} Low {% endif %}
{% if log.changes %}
View Changes
{{ log.changes }}
{% endif %} {% if log.additional_data %}
Additional Data
{{ log.additional_data|pprint }}
{% endif %}
{% endfor %}
{% if audit_logs|length >= 20 %}
{% endif %} {% else %}
No Activity Found

No recent activity for this user.

{% endif %}