{% extends "base.html" %} {% block title %}Activity Logs{% endblock %} {% block page_title %}Activity Logs{% endblock %} {% block content %}
System Activity Log
{% for log in logs.items %} {% endfor %}
Timestamp Action User Entity Details IP Address
{{ log.created_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ log.action }} {% if log.user %}{{ log.user.full_name }}
{{ log.user.email }}{% else %}System{% endif %}
{{ log.entity_type or '—' }}{% if log.entity_id %} #{{ log.entity_id }}{% endif %} {{ log.details or '—' }} {{ log.ip_address or '—' }}
{% if logs.pages > 1 %}
{% endif %}
{% endblock %}