{% extends "base.html" %} {% load static %} {% block title %}Quality Management Dashboard - {{ block.super }}{% endblock %} {% block content %}
Indicators Meeting Target
Indicators Below Target
Total Active Indicators
Measurements This Month
Incidents This Month
Open Incidents
High Risk Incidents
Pending Risk Assessments
Active Audits
Open Audit Findings
Active Projects
Recent Measurements
| Title | Severity | Status | Date |
|---|---|---|---|
|
{{ incident.incident_title|truncatechars:30 }}
{{ incident.location }}
|
{% if incident.severity == 'CRITICAL' %} Critical {% elif incident.severity == 'HIGH' %} High {% elif incident.severity == 'MEDIUM' %} Medium {% else %} Low {% endif %} | {% if incident.status == 'CLOSED' %} Closed {% elif incident.status == 'INVESTIGATING' %} Investigating {% else %} {{ incident.get_status_display }} {% endif %} | {{ incident.incident_date|date:"M d" }} |
| Indicator | Value | Status | Date |
|---|---|---|---|
| {{ measurement.indicator.indicator_name|truncatechars:25 }} | {{ measurement.value|floatformat:1 }} {{ measurement.indicator.measurement_unit }} | {% if measurement.status == 'VERIFIED' %} Verified {% elif measurement.status == 'PENDING' %} Pending {% else %} {{ measurement.get_status_display }} {% endif %} | {{ measurement.measurement_date|date:"M d" }} |
| Project | Manager | Methodology | Target Date |
|---|---|---|---|
| {{ project.project_name|truncatechars:25 }} |
{% if project.project_manager %}
{{ project.project_manager.first_name.0 }}{{ project.project_manager.last_name.0 }}
{{ project.project_manager.first_name }} {{ project.project_manager.last_name }}
|
{{ project.get_methodology_display }} | {{ project.target_completion_date|date:"M d, Y" }} |