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

SLA Configurations

Manage SLA deadlines for PX actions

Back to Config
{% for config in sla_configs %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Hospital" %} {% trans "Critical (hrs)" %} {% trans "High (hrs)" %} {% trans "Medium (hrs)" %} {% trans "Low (hrs)" %} {% trans "Auto Escalate" %} {% trans "Status" %}
{{ config.name }} {% if config.hospital %} {{ config.hospital.name_en }} {% else %} Global {% endif %} {{ config.critical_hours }} {{ config.high_hours }} {{ config.medium_hours }} {{ config.low_hours }} {% if config.auto_escalate %} {% else %} {% endif %} {% if config.is_active %} Active {% else %} Inactive {% endif %}

No SLA configurations found

{% endblock %}