{# app/templates/admin/store-products.html #} {% extends "admin/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 %} {% from 'shared/macros/inputs.html' import entity_selector, entity_selected_badge %} {% block title %}Store Products{% endblock %} {% block alpine_data %}adminStoreProducts(){% endblock %} {% block content %} {% call page_header_flex(title='Store Products', subtitle='Browse store-specific product catalogs with override capability') %}
{{ entity_selector(ref_name='storeSelect', id='store-select', placeholder='Filter by store...') }} {{ refresh_button(loading_var='loading', onclick='refresh()', variant='secondary') }} Create Product
{% endcall %} {{ entity_selected_badge(entity_var='selectedStore', clear_fn='clearStoreFilter()', code_field='store_code', color='purple') }} {{ loading_state('Loading products...') }} {{ error_state('Error loading products') }}

Total Products

0

Active

0

Featured

0

Digital

0

Physical

0

{% call table_wrapper() %} Product Store Source Price Status Actions {% endcall %} {{ pagination(show_condition="!loading && pagination.total > 0") }}
{% call modal_simple('confirmRemoveModal', 'Remove from Catalog', show_var='showRemoveModal', size='sm') %}

Are you sure you want to remove this product from the store's catalog?

This will not delete the source product from the marketplace repository.

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