{% extends 'timeseer.html' %} {% from 'macros.html' import alerter, bootstrap_icon %} {% from 'configure.html' import configure_menu with context %} {% block menu %} {{ configure_menu('KPI sets') }} {% endblock %} {% block main %}

Manage KPI sets

{{ alerter() }}
{% if source_name %} {% endif %}
{% if kpi_sets and kpi_sets|selectattr('origin.value', '==', 'ui')|list|count > 0 %}
{% endif %} {% if kpi_sets|count > 1 or pattern %}
{% endif %}
{% if kpi_sets %}
{% if source_name %} {% endif %} {% for set in kpi_sets|sort(attribute='name') %} {% endfor %}
{% if kpi_sets|selectattr('origin.value', '==', 'ui')|list|count > 0 %} {% endif %} KPI set name
{% if set.origin.value == 'ui' %} {% else %} {{ bootstrap_icon('lock', 'text-muted') }} {% endif %} {{ set.name }}
{% else %}

No kpi sets found.

{% endif %}
{% endblock %}