{% extends "admin/base.html" %} {% block title %}Payments{% endblock %} {% block content %}
Overview of all invoices and payments
| Invoice # | User | Period | Subtotal | Tax | Total | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ item.invoice.invoice_number }} | {% if item.user %} {{ item.user.username }} {% else %} Unknown {% endif %} | {{ item.invoice.period_start.strftime('%Y-%m-%d') }} - {{ item.invoice.period_end.strftime('%Y-%m-%d') }} | {{ item.invoice.subtotal | format_currency }} | {{ item.invoice.tax | format_currency }} | {{ item.invoice.total | format_currency }} | {% if item.invoice.status == 'paid' %} Paid {% elif item.invoice.status == 'open' %} Open {% else %} {{ item.invoice.status }} {% endif %} | View |
|
No invoices found
|
|||||||