{% extends "base.html" %} {% load static %} {% block title %}Quality Indicators - {{ block.super }}{% endblock %} {% block content %}

Quality Indicators

Monitor and track key performance indicators for quality management

Back to Dashboard
Quality Indicators {{ page_obj.paginator.count }}
{% if page_obj %}
{% for indicator in page_obj %} {% endfor %}
Indicator Category Type Target Current Value Status Responsible Last Updated Actions
{{ indicator.name }}
{{ indicator.description|truncatechars:50 }}
{{ indicator.get_category_display }} {{ indicator.get_type_display }} {% if indicator.target_value %} {{ indicator.target_value }} {% if indicator.unit == 'PERCENTAGE' %}%{% elif indicator.unit == 'CURRENCY' %}${% endif %} {% else %} - {% endif %} {% if indicator.current_value %} {{ indicator.current_value }} {% if indicator.unit == 'PERCENTAGE' %}%{% elif indicator.unit == 'CURRENCY' %}${% endif %} {% else %} No data {% endif %} {% if indicator.is_active %} Active {% else %} Inactive {% endif %} {% if indicator.responsible_user %} {{ indicator.responsible_user.get_full_name }}
{{ indicator.responsible_department.name }} {% elif indicator.responsible_department %} {{ indicator.responsible_department.name }} {% else %} Unassigned {% endif %}
{% if indicator.last_measurement_date %} {{ indicator.last_measurement_date|date:"M d, Y" }} {% else %} Never {% endif %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No Quality Indicators Found

No quality indicators match your current filters.

Clear Filters
{% endif %}
{% endblock %}