{# app/templates/admin/billing-history.html #} {% extends "admin/base.html" %} {% from 'shared/macros/alerts.html' import alert_dynamic, error_state %} {% from 'shared/macros/headers.html' import page_header_refresh %} {% from 'shared/macros/tables.html' import table_wrapper, table_header_custom, th_sortable %} {% from 'shared/macros/pagination.html' import pagination_full %} {% block title %}Billing History{% endblock %} {% block alpine_data %}adminBillingHistory(){% endblock %} {% block content %} {{ page_header_refresh('Billing History') }} {{ alert_dynamic(type='success', title='Success', message_var='successMessage', show_condition='successMessage') }} {{ error_state('Error', show_condition='error') }}

Total Invoices

0

Paid

0

Open

0

Failed

0

{% call table_wrapper() %} {% call table_header_custom() %} {{ th_sortable('invoice_date', 'Date', 'sortBy', 'sortOrder') }} {{ th_sortable('vendor_name', 'Vendor', 'sortBy', 'sortOrder') }} {{ th_sortable('status', 'Status', 'sortBy', 'sortOrder') }} {% endcall %}
Invoice #Description AmountActions
{% endcall %} {{ pagination_full() }} {% endblock %} {% block extra_scripts %} {% endblock %}