{% extends "base.html" %} {% block title %}{{ dashboard.name }} — Fabled Scryer{% endblock %} {% block content %} {# ── Header ────────────────────────────────────────────────────────────────── #}

{{ dashboard.name }}

{% if dashboard.is_default %} Default {% endif %}
{# Dashboard switcher — shown when more than one dashboard exists #} {% if all_dashboards | length > 1 %} {% endif %} {% if can_edit %} Edit Share {% endif %} Dashboards
{# ── Summary strip ─────────────────────────────────────────────────────────── #}
Hosts
{{ total_hosts }} total
Manage →
Ping
{% if ping_up + ping_down == 0 %} No hosts {% else %} {{ ping_up }}up {% if ping_down %} {{ ping_down }}down{% endif %} {% endif %}
DNS
{% if dns_ok + dns_fail == 0 %} No hosts {% else %} {{ dns_ok }}ok {% if dns_fail %} {{ dns_fail }}failed{% endif %} {% endif %}
Alerts
View rules →
{# ── Widget grid ───────────────────────────────────────────────────────────── #} {% if widgets %}
{% for item in widgets %}
{{ item.title }} Details →
{% endfor %}
{% else %}
No widgets on this dashboard yet.
{% if can_edit %} Add Widgets {% endif %}
{% endif %} {% endblock %}