{# 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.title }}
{{ 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 }}
Add ▾
{% for p in w.params %}
{% if p.type == "select" %} {% endif %}
{% endfor %}
{% endfor %}
{% else %}
No plugin widgets available. Enable plugins in Settings → Plugins.
{% endif %}