{% extends "base.html" %} {% block title %}Fines โ {{ patron.full_name }}{% endblock %} {% block content %}
Card {{ patron.library_card_number }} ยท Outstanding {{ outstanding_cents | currency }}
{% if message %}{% endif %} {% if error %}{% endif %} {% if projections %}These active loans are currently overdue but haven't been booked as fines yet. Use the button below to materialize them for this patron.
| Item | Due | Projected |
|---|---|---|
{{ p.loan.item.work.title }} {{ p.loan.item.barcode }} |
{{ p.loan.due_at.strftime("%Y-%m-%d") }} | {{ p.amount_cents | currency }} |
| ID | Kind | Amount | Status | Assessed | Note | Actions |
|---|---|---|---|---|---|---|
| #{{ fine.id }} | {{ fine.kind | replace("_", " ") }} | {{ fine.amount_cents | currency }} | {{ fine.status }} | {{ fine.assessed_at.strftime("%Y-%m-%d") }} | {{ fine.note or "โ" }} |
{% if fine.status == "outstanding" %}
Waive |
No fines on record.
{% endif %} {% endblock %}