diff --git a/hosting/locale/de/LC_MESSAGES/django.mo b/hosting/locale/de/LC_MESSAGES/django.mo
deleted file mode 100644
index 1a9bb493..00000000
Binary files a/hosting/locale/de/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/hosting/templates/hosting/order_detail.html b/hosting/templates/hosting/order_detail.html
index b691f34d..1eec7f99 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 %}
-
|