From c92fe1261b5dfc79e71828c80ac6bfa9dafc8822 Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Wed, 15 Apr 2026 22:25:29 +0200 Subject: [PATCH] fix(loyalty): use full pagination macro on card detail (match cards list) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch from pagination_simple to pagination — the same macro used on the cards list page, with page number buttons and "Showing X-Y of Z". Co-Authored-By: Claude Opus 4.6 (1M context) --- app/modules/loyalty/templates/loyalty/store/card-detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/modules/loyalty/templates/loyalty/store/card-detail.html b/app/modules/loyalty/templates/loyalty/store/card-detail.html index 49a83980..5f2ff473 100644 --- a/app/modules/loyalty/templates/loyalty/store/card-detail.html +++ b/app/modules/loyalty/templates/loyalty/store/card-detail.html @@ -3,7 +3,7 @@ {% from 'shared/macros/headers.html' import detail_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_simple %} +{% from 'shared/macros/pagination.html' import pagination %} {% block title %}{{ _('loyalty.store.card_detail.title') }}{% endblock %} @@ -153,7 +153,7 @@ {% endcall %} - {{ pagination_simple() }} + {{ pagination() }} {% endblock %}