From af184cd671666391263b6d036a1d1d86d5af7704 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 29 May 2016 15:18:36 +0200 Subject: [PATCH] order list styling --- shop/templates/order_list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 %}