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

Manage KPIs

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

No KPIs found.

{% endif %}
{% endblock %}