{% extends "base.html" %} {% block title %}System Logs - Plutus{% endblock %} {% block content %}

System Logs

User activity and system audit trail

Filters

Log Entries

{% if logs %}
{% for log in logs %} {% endfor %}
Timestamp User Action Entity Details IP Address Actions
{{ log.Added.strftime('%Y-%m-%d') }}
{{ log.Added.strftime('%H:%M:%S') }}
{{ log.user_name or 'System' }} {% if log.User_ID %}
ID: {{ log.User_ID }} {% endif %}
{% if log.Action %} {{ log.Action }} {% else %} - {% endif %} {% if log.Entity_Type %}
{{ log.Entity_Type }} {% if log.Entity_ID %}
ID: {{ log.Entity_ID }} {% endif %}
{% else %} - {% endif %}
{% if log.Log_Entry %}
{{ log.Log_Entry[:100] }}{% if log.Log_Entry|length > 100 %}...{% endif %}
{% else %} - {% endif %}
{% if log.IP_Address %} {{ log.IP_Address }} {% else %} - {% endif %}
{% if pagination %} {% endif %} {% else %}

No log entries found.

{% endif %}
{% endblock %}