diff --git a/shop/templates/order_list.html b/shop/templates/order_list.html index 41d65117..f78de80e 100644 --- a/shop/templates/order_list.html +++ b/shop/templates/order_list.html @@ -27,10 +27,10 @@ {{ order.handed_out_status }} {% url 'shop:order_detail' pk=order.pk as order_detail_url %} - {% bootstrap_button "Order details" icon="th-list" href=order_detail_url button_class="btn-primary btn-sm" %} + {% bootstrap_button "Order details" icon="th-list" href=order_detail_url button_class="btn-primary btn-xs" %} {% if not order.paid %} {% url 'shop:order_cancel' pk=order.pk as order_cancel_url %} - {% bootstrap_button "Cancel order" icon="remove" href=order_cancel_url button_class="btn-danger btn-sm" %} + {% bootstrap_button "Cancel order" icon="remove" href=order_cancel_url button_class="btn-danger btn-xs" %} {% endif %}