{% extends "base.html" %} {% block title %}Dashboard — {{ app_name }}{% endblock %} {% block content %}
{{ total_staff }}
Staff ({{ active_staff }} active)
{{ total_servers }}
Servers ({{ online_servers }} online)
{{ doc_count }}
Documentation Pages
{{ open_incidents }}
Open Incidents ({{ critical_incidents }} P1)
{{ ts_count }}
Troubleshooting Articles
{{ sop_count }}
SOPs

Recently Updated Documentation

{% if recent_pages %} {% for p in recent_pages %}
{{ p.title }} {{ p.updated_at.strftime('%d %b') }}
{% endfor %} {% else %}

No documentation yet.

{% endif %}

Recently Added Servers

{% if recent_servers %} {% for s in recent_servers %}
{{ s.hostname }} {{ s.status.value }}
{% endfor %} {% else %}

No servers yet.

{% endif %}

Recent Incidents

{% if recent_incidents %} {% for i in recent_incidents %}
{{ i.incident_number }} — {{ i.title }} {{ i.severity.value }} {{ i.status.value }}
{% endfor %} {% else %}

No incidents logged.

{% endif %}

Recent Staff Activity

{% if recent_activity %} {% for a in recent_activity %}
{{ a.username }} {{ a.action }} {{ a.entity_type }}
{{ a.created_at.strftime('%d %b %H:%M') }}
{% endfor %} {% else %}

No activity recorded yet.

{% endif %}
{% endblock %}