{% extends "base.html" %} {% set active_nav = "intake" %} {% block title %}Exception Queue - LSMC Hub{% endblock %} {% block content %}
{{ stats.unmatched or 0 }}
Unmatched Specimens
{{ stats.received_pending or 0 }}
Received - Pending Match
{{ stats.mia or 0 }}
Missing (MIA)

Pending Exceptions

{% if exceptions %}
{% for exc in exceptions %} {% endfor %}
Barcode Type Status Received Age
{{ exc.barcode }} {{ exc.specimen_type or "—" }} {{ exc.status }} {{ exc.received_date or "—" }} {{ exc.age }}
{% else %}

No exceptions pending

All specimens have been matched

{% endif %}
{% endblock %}