{% extends "base.html" %} {% block title %}Audit Log{% endblock %} {% block content %}
| Action | User | Resource | IP | Time |
|---|---|---|---|---|
| {{ log.action }} | {{ log.user.name if log.user else 'System' }} | {{ log.resource_type }}{% if log.resource_id %}#{{ log.resource_id }}{% endif %} | {{ log.ip_address or '-' }} | {{ log.created_at.strftime('%Y-%m-%d %H:%M') }} |
| No audit logs | ||||