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

Delete work

{{ work.title }} · {{ item_count }} {{ 'copy' if item_count == 1 else 'copies' }}

This moves the work, all {{ item_count }} {{ 'copy' if item_count == 1 else 'copies' }}, and their loan history to the trash. It can be restored from Recently Deleted, and cannot be undone until purged. Holds on this work will be cancelled.

{% if active_loans or outstanding_fines %}

Deletion is blocked: {% if active_loans %}{{ active_loans }} active loan(s).{% endif %} {% if outstanding_fines %}{{ outstanding_fines }} outstanding fine(s).{% endif %}

{% endif %}
Cancel
{% endblock %}