{% extends "base.html" %} {% block title %}Claims-returned — {{ library_name() }}{% endblock %} {% block content %}
Items a patron has claimed to have returned, but which haven't been located. Resolve each by verifying (found on shelf), writing off (trust the patron), or declaring lost.
{% if rows %}| Loan # | Barcode | Title | Patron | Card | |
|---|---|---|---|---|---|
| {{ loan.id }} | {{ item.barcode }} |
{{ work.title }} | {{ patron.full_name }} | {{ patron.library_card_number }} |
Resolve |
No outstanding claims.
{% endif %} {% endblock %}