{% extends "base.html" %} {% load static %} {% block title %}Dashboard - {{ block.super }}{% endblock %} {% block content %}

Dashboard {% if current_tenant %} {{ current_tenant.display_name }} {% endif %}

Loading statistics...

{{ _("Recent Activity")}}

{% for log in recent_audit_logs %}
{{ log.action }}

{{ log.description|truncatechars:100 }}

{{ log.user_email|default:"System" }} {{ log.timestamp|timesince }} ago
{{ log.event_type|default:'INFO' }}
{% empty %}

No recent activity to display.

{% endfor %}

System Health

Loading system health...
{% if current_tenant %}

Organization Info

Loading organization info...
{% endif %}

Quick Stats

{{ total_departments|default:0 }}

Departments

{{ total_configurations|default:0 }}

Configurations

{{ active_notifications|length|default:0 }}

Active Alerts

{{ recent_audit_logs|length|default:0 }}

Recent Logs
{% endblock %}