{% extends "base.html" %} {% from "_partials/empty_state.html" import empty_state %} {% block title %}My Fines — {{ library_name() }}{% endblock %} {% block content %}
Outstanding balance: {{ outstanding_cents | currency }}
{% if not fines %} {{ empty_state("No fines on record", "Your account is in good standing.") }} {% else %}| Kind | Amount | Status | Assessed | Note |
|---|---|---|---|---|
| {{ fine.kind | replace("_", " ") }} | {{ fine.amount_cents | currency }} | {{ fine.status }} | {{ fine.assessed_at.strftime("%Y-%m-%d") }} | {{ fine.note or "—" }} |
Fines can be paid at the circulation desk. Contact a librarian for assistance.
{% endif %} {% endblock %}