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

Billing — {{ tenant.name }}

Add Entry
{% for b in entries %} {% else %} {% endfor %}
DateAmountDescriptionInvoice RefPaid
{{ 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.
Back to Tenant {% endblock %}