{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Operations dashboard

System status as of {{ today.isoformat() }}.

Active alerts
{{ active_alerts }}
Users
{{ user_count }}
Administrators
{{ admin_count }}

Expiring soonest

settings →
{% if expiring_soon %} {% for a in expiring_soon %} {% set days = (a.expiration_date - today).days %} {% endfor %}
TitleExpiresDays
{{ a.title }}{% if a.category %} {{ a.category }}{% endif %} {{ a.expiration_date.isoformat() }} {{ days }}d
{% else %}

No upcoming alerts.

{% endif %}

Recent activity

full log →
{% if recent_audit %}
    {% for entry in recent_audit %}
  • {{ entry.action }} {% if entry.username %}· {{ entry.username }}{% endif %}{% if entry.details %}
    {{ entry.details }}{% endif %}
    {{ entry.timestamp.strftime('%m-%d %H:%M') }}
  • {% endfor %}
{% else %}

No activity yet.

{% endif %}
{% endblock %}