{# app/templates/admin/customers.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header_flex, refresh_button %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/tables.html' import table_wrapper, table_header %} {% from 'shared/macros/pagination.html' import pagination %} {% block title %}Customers{% endblock %} {% block alpine_data %}adminCustomers(){% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% call page_header_flex(title='Customer Management', subtitle='Manage customers across all vendors') %}
{{ refresh_button(loading_var='loading', onclick='resetAndLoad()', variant='secondary') }}
{% endcall %}
{{ loading_state('Loading customers...') }} {{ error_state('Error loading customers') }}

Total Customers

0

Active

0

With Orders

0

Total Revenue

0

Customer Vendor Customer # Orders Total Spent Status Joined Actions
{{ pagination() }}
{% endblock %} {% block extra_scripts %} {% endblock %}