{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}SLA Configurations - PX360{% endblock %} {% block content %}

{% trans "SLA Configurations" %}

{% trans "Manage Service Level Agreement configurations by complaint source" %}

{% trans "Back to Config" %}

{% trans "SLA Configurations List" %}

{% trans "Total" %}: {{ sla_configs.count }} {% trans "configs" %}
{% for config in sla_configs %} {% empty %} {% endfor %}
{% 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" %}

{% endblock %}