{% extends "base.html" %} {% load static %} {% block title %}Quality Indicators - {{ block.super }}{% endblock %} {% block content %}
Monitor and track key performance indicators for quality management
| 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 %} |
|