{# dashboard/_edit_panels.html — returned by all mutation routes and included by edit.html #}
{# ── Current layout ───────────────────────────────────────────────────── #}
Current Layout
{% if widgets %}
{% for item in widgets %}
{{ item.defn.label }}
{{ item.defn.description }}
{% endfor %}
{% else %}
No widgets yet — add some from the panel on the right.
{% endif %}
{# ── Available widgets ────────────────────────────────────────────────── #}
Available Widgets
{% if addable %}
{% for w in addable %}
{{ w.label }}
{{ w.description }}
{% endfor %}
{% else %}
All available widgets are on this dashboard.
{% endif %}