{% extends "base.html" %} {% block title %}Invoices · IP TM Manager{% endblock %} {% block body %}

Invoices

Bill subscribers monthly or on demand for any period.

Generate Invoices

All Invoices

{% for inv in invoices %} {% else %}{% endfor %}
NumberSubscriberPeriodAmountStatus
{{ inv.number }} {{ inv.subscriber.name }} {{ inv.period_start }} → {{ inv.period_end }} {{ inv.amount }} {{ 'paid' if inv.paid else 'unpaid' }}
No invoices yet.
{% endblock %}