{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Routing Rules - PX360{% endblock %} {% block content %}
Manage action routing and assignment rules
| {% trans "Priority" %} | {% trans "Name" %} | {% trans "Source Type" %} | {% trans "Severity" %} | {% trans "Hospital" %} | {% trans "Assign To" %} | {% trans "Status" %} |
|---|---|---|---|---|---|---|
| {{ rule.priority }} |
{{ rule.name }} {% if rule.description %} {{ rule.description|truncatewords:10 }} {% endif %} |
{% if rule.source_type %} {{ rule.get_source_type_display }} {% else %} Any {% endif %} | {% if rule.severity %} {{ rule.get_severity_display }} {% else %} Any {% endif %} | {% if rule.hospital %} {{ rule.hospital.name_en }} {% else %} All {% endif %} | {% if rule.assign_to_user %} {{ rule.assign_to_user.get_full_name }} {% elif rule.assign_to_department %} {{ rule.assign_to_department.name_en }} {% elif rule.assign_to_role %} {{ rule.assign_to_role }} {% else %} - {% endif %} | {% if rule.is_active %} Active {% else %} Inactive {% endif %} |
|
No routing rules found |
||||||