diff options
| -rw-r--r-- | pages/shop/order/index.fnl | 2 | ||||
| -rw-r--r-- | templates.fnl | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pages/shop/order/index.fnl b/pages/shop/order/index.fnl index 35a48aa..c49f71b 100644 --- a/pages/shop/order/index.fnl +++ b/pages/shop/order/index.fnl @@ -31,7 +31,7 @@ (if (not agreed-to-cookies?) (templates.cookies-agreement) "") [:div {:class "back"} [:a {:href "/shop"} "⟵ Обратно к списку"]] [:section {} - [:h2 {} "Оформление заказа"] + [:h2 {:id "content"} "Оформление заказа"] (forms.render-form %order-form data errors)]])]) (fn check-stocks [db basket] diff --git a/templates.fnl b/templates.fnl index d7d83e3..542b898 100644 --- a/templates.fnl +++ b/templates.fnl @@ -88,7 +88,9 @@ (basket-item item redirect-url)))] [:div {:class "mt-0-25"} "—"] [:div {} [:strong {} (.. "Итого: " (lib.format-price total) "₽")]] - [:a {:href "/shop/order"} "Оформить заказ ⟶"]]))) + (if (~= redirect-url "/shop/order") + (HTML [:a {:href "/shop/order#content"} "Оформить заказ ⟶"]) + "")]))) (fn product-overview [product classes] (local classes (or classes "")) |
