{# dashboard/_edit_panels.html — returned by all mutation routes and included by edit.html #}
{# ── Current layout (drag to move, drag the corner/edge to resize) ──────── #}
Current Layout
{% if widgets %} Drag to move · drag a corner to resize · saved automatically {% endif %}
{% if widgets %}
{% for item in widgets %}
{{ item.title }}
{{ item.defn.description }}
{% endfor %}
{% else %}
No widgets yet. Add one from the right to begin.
{% endif %}
{# ── Available widgets ────────────────────────────────────────────────── #}
Available Widgets
{% if addable %} {% set _groups = [("core", "Core monitors"), ("capability", "Monitoring capabilities"), ("integration", "Integrations")] %} {% for _gkey, _glabel in _groups %} {% set _gw = addable | selectattr("group", "equalto", _gkey) | list %} {% if _gw %}
{{ _glabel }}
{% for w in _gw %}
{{ w.label }}
{{ w.description }}
Add ▾
{% for p in w.params %}
{% if p.type == "select" %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% endfor %} {% else %}
No plugin widgets available. Enable plugins in Settings → Plugins.
{% endif %}