{# Bottom drawer — the widget picker, revealed by body.dash-editing. Fixed-position overlay so it never changes the dashboard's width. Add forms are submitted via JS (see index.html) which inserts the returned grid item in place. #}
Add a widget
{% 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" %} {% elif p.type == "host" %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% endfor %} {% else %}
No plugin widgets available. Enable plugins in Settings → Plugins.
{% endif %}