{% extends "base.html" %} {% block title %}Audit Log{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Audit Log

Clear
{% if logs %} {% for log in logs %} {% endfor %} {% else %} {% endif %}
Time Admin Action Target Detail IP
{{ log.created_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ log.admin.username if log.admin else 'system' }} {{ log.action }} {%- if log.target_type -%} {{ log.target_type }}{% if log.target_id %} #{{ log.target_id }}{% endif %} {%- else -%}-{%- endif -%} {{ log.detail or '-' }} {{ log.ip_address or '-' }}
No audit log entries match the current filters.
{% if pagination is defined and pagination and pagination.pages > 1 %} {% endif %} {% endblock %}