{# app/modules/loyalty/templates/loyalty/merchant/pins.html #} {% extends "merchant/base.html" %} {% from 'shared/macros/headers.html' import page_header_flex, refresh_button %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% block title %}{{ _('loyalty.merchant.pins.title') }}{% endblock %} {% block i18n_modules %}['loyalty']{% endblock %} {% block alpine_data %}merchantLoyaltyPins(){% endblock %} {% block content %} {% call page_header_flex(title=_('loyalty.merchant.pins.title'), subtitle=_('loyalty.merchant.pins.subtitle')) %}
{{ refresh_button(loading_var='loading', onclick='loadPins()', variant='secondary') }}
{% endcall %} {{ loading_state(_('loyalty.merchant.pins.loading')) }} {{ error_state(_('loyalty.merchant.pins.error_loading')) }} {% set pins_api_prefix = '/merchants/loyalty' %} {% set show_store_filter = true %} {% set show_crud = true %} {% include 'loyalty/shared/pins-list.html' %} {% endblock %} {% block extra_scripts %} {% endblock %}