{% extends "base.html" %} {% block title %}Activity Logs - ABYSS SMS{% endblock %} {% block content %}
All Activity Logs
{% if logs.items %} {% for log in logs.items %} {% endfor %} {% else %} {% endif %}
# User Action Details IP Address Date/Time
{{ log.id }} {% if log.user %} {{ log.user.username }} {% else %} System {% endif %} {{ log.action }} {{ log.details or 'N/A' }} {{ log.ip_address or 'N/A' }} {{ log.created_at.strftime('%Y-%m-%d %H:%M:%S') if log.created_at else 'N/A' }}
No activity logs found.
{% if logs.pages > 1 %} {% endif %}
{% endblock %}