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

{% translate "SLA Configurations" %}

{% translate "Manage Service Level Agreement settings for complaint deadlines" %}

{% translate "Create SLA Config" %}

{% translate "Filters" %}

{% translate "Clear" %}

{% translate "All SLA Configurations" %}

{% if sla_configs %}
{% for config in sla_configs %} {% endfor %}
{% translate "Hospital" %} {% translate "Severity" %} {% translate "Priority" %} {% translate "SLA Hours" %} {% translate "Warning Hours" %} {% translate "Status" %} {% translate "Actions" %}
{{ config.hospital.name }} {{ config.get_severity_display }} {{ config.get_priority_display }} {{ config.sla_hours }}h {{ config.warning_hours }}h {% if config.is_active %} {% translate "Active" %} {% else %} {% translate "Inactive" %} {% endif %}
{% csrf_token %}
{% if page_obj.has_other_pages %}

{% blocktrans with start=page_obj.start_index end=page_obj.end_index total=page_obj.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} configurations {% endblocktrans %}

{% if page_obj.has_previous %} {% translate "Previous" %} {% endif %} {% if page_obj.has_next %} {% translate "Next" %} {% endif %}
{% endif %} {% else %}

{% translate "No SLA configurations found" %}

{% translate "Create your first configuration to get started" %}

{% translate "Create SLA Config" %}
{% endif %}
{% endblock %}