{# app/templates/store/products.html #} {% extends "store/base.html" %} {% from 'shared/macros/pagination.html' import pagination %} {% 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 %} {% from 'shared/macros/modals.html' import modal_simple %} {% block title %}Products{% endblock %} {% block alpine_data %}storeProducts(){% endblock %} {% block content %} {% call page_header_flex(title='Products', subtitle='Manage your product catalog') %}
{{ refresh_button(loading_var='loading', onclick='loadProducts()', variant='secondary') }}
{% endcall %} {{ loading_state('Loading products...') }} {{ error_state('Error loading products') }}

Total Products

0

Active

0

Inactive

0

Featured

0

product(s) selected
Product SKU Price Status Featured Actions

No products found

Add your first product to get started

{{ pagination(show_condition="!loading && pagination.total > 0") }} {% call modal_simple('deleteProductModal', 'Delete Product', show_var='showDeleteModal', size='sm') %}
{% endcall %} {% call modal_simple('bulkDeleteProductModal', 'Delete Selected Products', show_var='showBulkDeleteModal', size='sm') %}

Are you sure you want to delete selected product(s)? This action cannot be undone.

{% endcall %} {% endblock %} {% block extra_scripts %} {% endblock %}