{% extends "base.html" %} {% block title %}Outstanding fines — {{ library_name() }}{% endblock %} {% block content %}
All unpaid fines across the library. Pay or waive individual fines from the patron's fines page.
{{ total }} fine{{ '' if total == 1 else 's' }} · total owed {{ grand_total_cents | currency }}
{% if fines %}| 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 |
No outstanding fines.
{% endif %} {% endblock %}