fix(loyalty): use full pagination macro on card detail (match cards list)
Some checks failed
CI / ruff (push) Successful in 14s
CI / pytest (push) Has started running
CI / validate (push) Has been cancelled
CI / dependency-scanning (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / deploy (push) Has been cancelled

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) <noreply@anthropic.com>
This commit is contained in:
2026-04-15 22:25:29 +02:00
parent ca152cd544
commit c92fe1261b

View File

@@ -3,7 +3,7 @@
{% from 'shared/macros/headers.html' import detail_page_header %} {% from 'shared/macros/headers.html' import detail_page_header %}
{% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/alerts.html' import loading_state, error_state %}
{% from 'shared/macros/tables.html' import table_wrapper, table_header %} {% 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 %} {% block title %}{{ _('loyalty.store.card_detail.title') }}{% endblock %}
@@ -153,7 +153,7 @@
</tbody> </tbody>
{% endcall %} {% endcall %}
{{ pagination_simple() }} {{ pagination() }}
</div> </div>
</div> </div>
{% endblock %} {% endblock %}