{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}KPI Definitions - PX360{% endblock %} {% block content %}
Manage key performance indicators
| {% trans "Name" %} | {% trans "Category" %} | {% trans "Unit" %} | {% trans "Target" %} | {% trans "Thresholds" %} | {% trans "Status" %} |
|---|---|---|---|---|---|
|
{{ kpi.name }} {% if kpi.description %} {{ kpi.description|truncatewords:15 }} {% endif %} |
{{ kpi.get_category_display }} | {{ kpi.unit }} | {% if kpi.target_value %} {{ kpi.target_value }} {% else %} - {% endif %} | {% if kpi.warning_threshold or kpi.critical_threshold %} {% if kpi.warning_threshold %} Warning: {{ kpi.warning_threshold }} {% endif %} {% if kpi.critical_threshold %} Critical: {{ kpi.critical_threshold }} {% endif %} {% else %} - {% endif %} | {% if kpi.is_active %} Active {% else %} Inactive {% endif %} |
|
No KPIs defined |
|||||