diff --git a/shop/templates/order_list.html b/shop/templates/order_list.html
index 143181d6..5cb88c17 100644
--- a/shop/templates/order_list.html
+++ b/shop/templates/order_list.html
@@ -1,5 +1,6 @@
{% extends 'shop_base.html' %}
{% load bootstrap3 %}
+{% load shop_tags %}
{% block shop_content %}
Orders
@@ -20,16 +21,16 @@
{{ order.id }} |
{{ order.get_number_of_items }} |
- {{ order.total }} |
+ {{ order.total|currency }} |
{{ order.open }} |
{{ order.paid }} |
{{ order.handed_out_status }} |
{% url 'shop:order_detail' pk=order.pk as order_detail_url %}
- {% bootstrap_button "Order details" href=order_detail_url button_class="btn-primary btn-small" %}
+ {% bootstrap_button "Order details" icon="th-list" href=order_detail_url button_class="btn-primary btn-sm" %}
{% if not order.paid %}
{% url 'shop:order_cancel' pk=order.pk as order_cancel_url %}
- {% bootstrap_button "Cancel order" href=order_cancel_url button_class="btn-primary btn-small" %}
+ {% bootstrap_button "Cancel order" icon="remove" href=order_cancel_url button_class="btn-danger btn-sm" %}
{% endif %}
|