{% extends "admin/base.html" %} {% block title %}Payments{% endblock %} {% block content %}
Total Revenue
{{ summary.total_revenue | format_currency }}
Pending Invoices
{{ summary.pending_count }}
Pending Amount
{{ summary.pending_amount | format_currency }}
{% for item in invoices %} {% else %} {% endfor %}
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
{% if total_pages > 1 %} {% endif %}
{% endblock %}