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

Outstanding fines

All unpaid fines across the library. Pay or waive individual fines from the patron's fines page.

Reset

{{ total }} fine{{ '' if total == 1 else 's' }} · total owed {{ grand_total_cents | currency }}

{% if fines %} {% for fine in fines %} {% endfor %}
Patron Amount Kind Assessed Item
{{ fine.patron.full_name }}
{{ fine.patron.library_card_number }}
{{ fine.amount_cents | currency }} {{ fine.kind }} {{ fine.assessed_at.strftime("%Y-%m-%d") }} {% if fine.item %} {{ fine.item.barcode }} {% else %}—{% endif %} Resolve
{% if has_prev or has_next %} {% endif %} {% else %}

No outstanding fines.

{% endif %} {% endblock %}