diff --git a/hosting/templates/hosting/order_detail.html b/hosting/templates/hosting/order_detail.html
index 7705a006..5745a93c 100644
--- a/hosting/templates/hosting/order_detail.html
+++ b/hosting/templates/hosting/order_detail.html
@@ -4,7 +4,20 @@
{% block content %}
+ {% if messages %}
+
+
+
+ {% for message in messages %}
+ {{ message }}
+ {% endfor %}
+
+
+
+ {% endif %}
+ {% if not error %}
+
{% trans "Invoice"%}
{% trans "Order #"%} {{order.id}}
@@ -66,5 +79,6 @@
{% endif %}
+ {% endif %}
{%endblock%}
diff --git a/hosting/templates/hosting/orders.html b/hosting/templates/hosting/orders.html
index 42b77e88..b52e7fc0 100644
--- a/hosting/templates/hosting/orders.html
+++ b/hosting/templates/hosting/orders.html
@@ -33,9 +33,8 @@
{% endif %}
-
|