{# app/templates/admin/customers.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% 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_full %} {% block title %}Customers{% endblock %} {% block alpine_data %}adminCustomers(){% endblock %} {% block content %} {{ page_header('Customer Management') }} {{ 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_full(load_fn="loadCustomers()", item_label="customers") }}
{% endblock %} {% block page_scripts %} {% endblock %}