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