{% extends "base.html" %} {% block title %}Exception Queue - LSMC Hub{% endblock %} {% block content %}
{% if exceptions %}
{% for exc in exceptions %} {% endfor %}
Exception # EUID Type Status Trigger TRF Assigned To Created Actions
{{ exc.exception_number }} {{ exc.id }} {{ exc.exception_type }} {{ exc.status }} {% if exc.trigger_entity_type %} {{ exc.trigger_entity_type }} {% else %} - {% endif %} {% if exc.order_number %} {{ exc.order_number }} {% else %} - {% endif %} {% if exc.assigned_to %} {{ exc.assigned_to_name or exc.assigned_to }} {% else %} Unassigned {% endif %} {{ exc.created_at | format_dt(user_preferences) }} View
{% else %}

No exceptions found.

{% if status_filter or type_filter %} Clear Filters {% endif %}
{% endif %}
{{ stats.open }}
Open
{{ stats.assigned }}
Assigned
{{ stats.in_progress }}
In Progress
{{ stats.resolved_today }}
Resolved Today
{% endblock %}