{# app/templates/admin/subscription-tiers.html #} {# noqa: FE-008 - Using raw number inputs for cents/limits in admin tier config modal #} {% extends "admin/base.html" %} {% from 'shared/macros/alerts.html' import alert_dynamic, error_state %} {% from 'shared/macros/headers.html' import page_header_refresh %} {% from 'shared/macros/tables.html' import table_wrapper, table_header_custom, th_sortable %} {% from 'shared/macros/modals.html' import modal_confirm %} {% block title %}Subscription Tiers{% endblock %} {% block alpine_data %}adminSubscriptionTiers(){% endblock %} {% block content %} {{ page_header_refresh('Subscription Tiers') }} {{ alert_dynamic(type='success', title='Success', message_var='successMessage', show_condition='successMessage') }} {{ error_state('Error', show_condition='error') }}

Total Tiers

0

Active Tiers

0

Public Tiers

0

Est. MRR

-

{% call table_wrapper() %} {% call table_header_custom() %} {{ th_sortable('code', 'Code', 'sortBy', 'sortOrder') }} {{ th_sortable('name', 'Name', 'sortBy', 'sortOrder') }} {% endcall %}
#Monthly Annual Orders/Mo Products Team Features Status Actions
{% endcall %}

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