diff --git a/templates/_types/tickets/_adjust_response.html b/templates/_types/tickets/_adjust_response.html index fdbbe02..bdd90f6 100644 --- a/templates/_types/tickets/_adjust_response.html +++ b/templates/_types/tickets/_adjust_response.html @@ -1,4 +1,4 @@ {# Response for ticket adjust — buy form + OOB cart-mini update #} {% from '_types/cart/_mini.html' import mini %} -{{ mini(oob='true') }} +{{ mini(oob='true', count=cart_count) }} {% include '_types/tickets/_buy_form.html' %} diff --git a/templates/_types/tickets/_buy_result.html b/templates/_types/tickets/_buy_result.html index 9f1851e..ff71783 100644 --- a/templates/_types/tickets/_buy_result.html +++ b/templates/_types/tickets/_buy_result.html @@ -1,6 +1,6 @@ {# Shown after ticket purchase — replaces the buy form #} {# OOB: refresh cart badge to reflect new ticket count #} -{% from '_types/cart/_mini.html' import mini %} +{% from '_types/cart/_mini.html' import mini with context %} {{ mini(oob='true') }}