diff --git a/shop/templates/shop_index.html b/shop/templates/shop_index.html index 0e2c4190..e7a2ba51 100644 --- a/shop/templates/shop_index.html +++ b/shop/templates/shop_index.html @@ -20,15 +20,17 @@ Here you can see your orders and available products in the shop. {% for order in orders %} - + {{ order.id }} {{ order.finalized }} {{ order.paid }} ? {% if order.finalized and not order.paid %} - {% bootstrap_button "Pay order" href="{% reverse 'shop:order_detail' pk=order.id %}" button_class="btn-primary" %} - {% bootstrap_button "Cancel order" href="{% reverse 'shop:order_cancel' pk=order.id %}" button_class="btn-primary" %} + {% url 'shop:order_detail' pk=order.id as order_detail_url %} + {% url 'shop:order_cancel' pk=order.id as order_cancel_url %} + {% bootstrap_button "Pay order" href=order_detail_url button_class="btn-primary" %} + {% bootstrap_button "Cancel order" href=order_cancel_url button_class="btn-primary" %} {% endif %} @@ -58,7 +60,8 @@ Here you can see your orders and available products in the shop. {% if product.is_available %} - {% bootstrap_button "Add to order" href="{% reverse 'shop:product_detail' pk=product.id %}" button_class="btn-primary" %} + {% url 'shop:product_detail' pk=product.id as product_detail_url %} + {% bootstrap_button "Add to order" href=product_detail_url button_class="btn-primary" %} {% else %} N/A {% endif %}