⚠ You have {{ outstanding_cents | currency }} in outstanding fines. You can
place holds, but checkout will be blocked at pickup until fines are paid.
{% endif %}
{% if not holds %}
{{ empty_state("No active holds", "Reserve items from the catalog and they will appear here.", cta_href="/ui/catalog", cta_label="Browse catalog") }}
{% else %}
Title
Status
Queue
Expires
Action
{% for hold in holds %}
{% set queue_position = queue_positions.get(hold.id) %}
{% include "me/_hold_row.html" %}
{% endfor %}