{% extends "base.html" %} {% block title %}Dormant items — {{ library_name() }}{% endblock %} {% block content %}
Items not checked out since the cutoff date. Items never loaned appear at the top. Withdrawn items are excluded.
{% if rows %}| Barcode | Title | Media | Branch | Last checkout |
|---|---|---|---|---|
{{ r.barcode }} |
{{ r.title }} | {{ r.media_type_code }} | {{ r.branch_code }} | {% if r.last_checkout_at %}{{ r.last_checkout_at.strftime("%Y-%m-%d") }}{% else %}never{% endif %} |
No dormant items match the current filter.
{% endif %} {% endblock %}