{% extends "admin/layouts/base.html" %} {% block title %}Billing History{% endblock %} {% block content %}

Billing History

{% for b in entries %} {% else %} {% endfor %}
DateTenantAmountDescriptionInvoice RefPaid
{{ 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.
{% endblock %}