{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{{ title }} - {% translate "SLA Configurations" %} - PX360{% endblock %} {% block content %}
{% csrf_token %} {% if request.user.is_px_admin %}
{% if form.hospital.errors %}
{{ form.hospital.errors.0 }}
{% endif %}
{% endif %}
{% if form.severity.errors %}
{{ form.severity.errors.0 }}
{% endif %}
{% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{% if form.sla_hours.errors %}
{{ form.sla_hours.errors.0 }}
{% else %}
{% translate "Hours after complaint creation before deadline" %}
{% endif %}
{% if form.warning_hours.errors %}
{{ form.warning_hours.errors.0 }}
{% else %}
{% translate "Hours before deadline to send warning notification" %}
{% endif %}
{% translate "Only active configurations will be applied to complaints" %}
{% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{% translate "Help" %}
{% translate "Understanding SLA Configuration" %}

{% translate "Service Level Agreements (SLAs) define the timeframes within which complaints should be resolved based on their severity and priority." %}

  • {% translate "High severity complaints typically have shorter SLAs" %}
  • {% translate "Warning threshold sends notifications before deadline" %}
  • {% translate "Inactive configurations won't be applied" %}

{% translate "Best Practices" %}
  • {% translate "Set warning threshold at least 4-6 hours before deadline" %}
  • {% translate "Consider hospital-specific requirements" %}
{% endblock %}