diff options
Diffstat (limited to 'templates.fnl')
| -rw-r--r-- | templates.fnl | 4 |
1 files changed, 3 insertions, 1 deletions
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 "")) |
