From 54c195777669ef444eb0688a5ab040f8adc82bc3 Mon Sep 17 00:00:00 2001 From: Sli Date: Thu, 25 Sep 2025 15:40:28 +0200 Subject: [PATCH] Move notifications from eboutic checkout to billing info fragment --- eboutic/templates/eboutic/eboutic_billing_info.jinja | 1 + eboutic/templates/eboutic/eboutic_checkout.jinja | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/eboutic/templates/eboutic/eboutic_billing_info.jinja b/eboutic/templates/eboutic/eboutic_billing_info.jinja index 429240b8..429aac8b 100644 --- a/eboutic/templates/eboutic/eboutic_billing_info.jinja +++ b/eboutic/templates/eboutic/eboutic_billing_info.jinja @@ -31,4 +31,5 @@
+ {% include "core/base/notifications.jinja" %} diff --git a/eboutic/templates/eboutic/eboutic_checkout.jinja b/eboutic/templates/eboutic/eboutic_checkout.jinja index bf467222..17210cc5 100644 --- a/eboutic/templates/eboutic/eboutic_checkout.jinja +++ b/eboutic/templates/eboutic/eboutic_checkout.jinja @@ -1,5 +1,9 @@ {% extends "core/base.jinja" %} +{% block notifications %} + {# Notifications are moved inside the billing info fragment #} +{% endblock %} + {% block title %} {% trans %}Basket state{% endtrans %} {% endblock %}