{% extends "base.html" %}
{% from "_macros.html" import status_pill, loan_pill %}
{% block title %}Item {{ item.barcode }} — {{ library_name() }}{% endblock %}
{% block content %}
Item {{ item.work.title }}
{{ item.barcode }}
{{ item.barcode }}Declaring lost or damaged will close any active loan, cancel pending holds, and assess the appropriate fee.
{% if item.status != "lost" and item.status != "withdrawn" %} Declare lost {% endif %} {% if item.status != "damaged" and item.status != "withdrawn" %} Mark damaged {% endif %} {% if item.status == "damaged" %} {% endif %} {% if item.status == "lost" %} {% endif %} {% endif %} {% if item.status == "claims_returned" and has_permission(user, 'loan.checkin') %}A patron asserted this item was returned. Choose how to resolve:
Verify returned (found) Write off Declare lost {% endif %} {% if has_permission(user, 'item.view') %}| Date | Kind | Note | By | |
|---|---|---|---|---|
| {{ (n.event_date or n.created_at.date()).strftime("%Y-%m-%d") }} | {{ n.kind }} | {{ n.note }} | {{ n.actor_label or (n.author.username if n.author else "system") }} | {% if not n.is_system and has_permission(user, 'item.edit') %} {% endif %} |
No notes yet.
{% endif %} {% if has_permission(user, 'item.edit') %}| Patron | Checked out | Due | Returned | Renewals |
|---|---|---|---|---|
{{ loan.patron.full_name }}
{{ loan.patron.library_card_number }}
|
{{ loan.checked_out_at.strftime("%Y-%m-%d") }} | {{ loan.due_at.strftime("%Y-%m-%d") }} | {{ loan.returned_at.strftime("%Y-%m-%d") if loan.returned_at else "—" }} | {{ loan.renewal_count }} |
This copy has no loan history.
{% endif %} {% endif %} {% endblock %}