From 14b9127c28abce9d9dc86ce4770a1c6e6c25ed3f Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 24 Sep 2015 14:18:35 +0200 Subject: [PATCH] fix shop menu --- app/templates/shop/includes/user_panel_header.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/templates/shop/includes/user_panel_header.html b/app/templates/shop/includes/user_panel_header.html index db8f64c..8f5b378 100644 --- a/app/templates/shop/includes/user_panel_header.html +++ b/app/templates/shop/includes/user_panel_header.html @@ -1,15 +1,15 @@ {% load i18n shop_tags mezzanine_tags %} {% spaceless %} - - -{% blocktrans count request.cart.total_quantity as cart_quantity %}1 item{% plural %}{{ cart_quantity }} items{% endblocktrans %} -{% trans "in cart" %}: -{{ request.cart.total_price|currency }}
{% if request.cart.total_quantity != 0 %} {% if request.session.order.step %}{% trans "Return to Checkout" %}{% else %}{% trans "Go to Checkout" %}{% endif %}
{% endif %} + + +{% blocktrans count request.cart.total_quantity as cart_quantity %}1 item{% plural %}{{ cart_quantity }} items{% endblocktrans %} +{% trans "in cart" %}: +{{ request.cart.total_price|currency }}
{% if settings.SHOP_USE_WISHLIST %} -- 2.39.5