{% extends "base.html" %} {% block title %}{{ dashboard.name }} — Steward{% endblock %} {% block head %} {# Gridstack renders the grid for everyone (static for viewers); editors also get the in-place drag-resize + bottom drawer. #} {% 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 %} Share {% endif %} Dashboards
{# The old fixed summary strip (Hosts/Ping/DNS/Alerts) was merged into the single 'Overview' widget (status_overview) so there's one canonical summary, not two. #} {# ── Widget grid (Gridstack; static until Edit is toggled) ──────────────────── #} {% if not widgets %}
No widgets on this dashboard yet.
{% if can_edit %} {% endif %}
{% endif %}
{% for item in widgets %} {% include "dashboard/_grid_item.html" %} {% endfor %}
{% if can_edit %}{% include "dashboard/_widget_drawer.html" %}{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}