{% extends "admin/base.html" %} {% block title %}{{ site_title }} | Dashboard{% endblock %} {% block content %}

Dashboard

Recent admin actions and application logs.

description {{ resolved_log_path }}

Models

{{ models|length }}

Registered in admin panel

Model Categories

{{ model_categories|length }}

Grouped by source file

Recent Actions

{{ recent_actions|length }}

Latest events in memory

Application Logs

Showing last {{ admin_settings.log_tail_lines if admin_settings else 200 }} lines
{% if log_lines %} {% for line in log_lines %}
{{ line }}
{% endfor %} {% else %}
No log data.
{% endif %}

Recent Actions

{% if recent_actions %} {% for action in recent_actions %}

{{ action.action }}

{{ action.timestamp }}

{{ action.username }}{% if action.target %} -> {{ action.target }}{% endif %}

{% if action.details %}

{{ action.details }}

{% endif %}
{% endfor %} {% else %}

No recent actions yet.

{% endif %}
{% endblock %}