{% extends "layouts/base.html" %}
{% load i18n %}
{% load static %}
{% block title %}SLA Configurations - PX360{% endblock %}
{% block content %}
{% trans "Manage Service Level Agreement configurations by complaint source" %}
{% trans "SLA Configurations" %}
| {% trans "Source Type" %} | {% trans "Hospital" %} | {% trans "Acknowledgement (hrs)" %} | {% trans "Resolution (hrs)" %} | {% trans "Escalation (hrs)" %} | {% trans "Status" %} |
|---|---|---|---|---|---|
| {% if config.source_type %} {{ config.get_source_type_display }} {% else %} {% trans "Default" %} {% endif %} | {% if config.hospital %} {{ config.hospital.name_en }} {% else %} {% trans "All Hospitals" %} {% endif %} | {{ config.acknowledgement_hours }}h | {{ config.resolution_hours }}h | {{ config.escalation_hours }}h | {% if config.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} |
|
{% trans "No SLA configurations found" %} |
|||||