{% extends "admin/layouts/base.html" %} {% block title %}Billing History{% endblock %} {% block content %}
| Date | Tenant | Amount | Description | Invoice Ref | Paid |
|---|---|---|---|---|---|
| {{ b.created_at.strftime('%Y-%m-%d') }} | {{ b.tenant.name if b.tenant else b.tenant_id }} | ${{ "%.2f"|format(b.amount) }} | {{ b.description }} | {{ b.invoice_ref or '—' }} | {{ b.paid_at.strftime('%Y-%m-%d') if b.paid_at else '—' }} |
| No billing entries yet. | |||||