{% extends "base.html" %} {% block title %}Dormant items — {{ library_name() }}{% endblock %} {% block content %}

Dormant items

Items not checked out since the cutoff date. Items never loaned appear at the top. Withdrawn items are excluded.

{% if branches|length > 1 %} {% endif %} Download CSV
{% if rows %}
{% for r in rows %} {% endfor %}
BarcodeTitleMediaBranchLast 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 %}
{% else %}

No dormant items match the current filter.

{% endif %} {% endblock %}