diff --git a/hosting/templates/hosting/bill_detail.html b/hosting/templates/hosting/bill_detail.html
index b58c21f7..449fa1bb 100644
--- a/hosting/templates/hosting/bill_detail.html
+++ b/hosting/templates/hosting/bill_detail.html
@@ -3,88 +3,89 @@
{% load i18n %}
{% block content %}
-
{{ bill }}
- {# Adress bar #}
-
-
-
{% trans "Invoice"%}
{% trans "Order #"%} {{bill.id}}
+
+ {# Adress bar #}
+
+
+
{% trans "Invoice"%}
{% trans "Order #"%} {{bill.id}}
+
-
-
-
-
-
- {{bill.customer.user.name}}
- {{bill.billing_address.street_address}},{{bill.billing_address.postal_code}}
- {{bill.billing_address.city}}, {{bill.billing_address.country}}.
-
-
-
-
- {% trans "ungleich GmbH" %}
- {% trans "buchhaltung@ungleich.ch" %}
- {% trans "Hauptstrasse 14"%}
- {% trans "CH-8775 Luchsingen"%}
- {% trans "Mwst-Nummer: CHE-109.549.333 MWST"%}
+
+
+
+
+ {{bill.customer.user.name}}
+ {{bill.billing_address.street_address}},{{bill.billing_address.postal_code}}
+ {{bill.billing_address.city}}, {{bill.billing_address.country}}.
+
+
+
+
+ {% trans "ungleich GmbH" %}
+ {% trans "buchhaltung@ungleich.ch" %}
+ {% trans "Hauptstrasse 14"%}
+ {% trans "CH-8775 Luchsingen"%}
+ {% trans "Mwst-Nummer: CHE-109.549.333 MWST"%}
-
-
-
-
-
- {# Bill header #}
-
-
- Name |
- Cores |
- Memory |
- Disk Size |
- Price |
-
-
-
- {# Bill items#}
- {% for vm in vms %}
+
+
+
+
+
+ {# Bill header #}
+
- {{ vm.name }} |
- {{ vm.cores }} |
- {{ vm.memory|floatformat }} GiB |
- {{ vm.disk_size|floatformat }} GiB |
- {{ vm.price|floatformat }} CHF |
-
+ Name |
+ Cores |
+ Memory |
+ Disk Size |
+ Price |
- {% endfor %}
- {# Bill total#}
-
- {% trans "Total:" %} |
- {{ bill.total_price}} CHF |
-
-
-
-
- {# Bill Footer #}
-
- {% trans "Alles Preise in CHF mit 8% Mehrwertsteuer." %}
- {% trans "Betrag zahlbar innerhalb von 30 Tagen ab Rechnungseingang." %}
- {% trans "Kontoverbindung:" %}
-
-
- {% trans "IBAN:" %}
-
-
- {% trans "BIC:" %}
-
-
-
-
- {% trans "CH02 ............" %}
-
-
- {% trans "POFICHBEXXX" %}
-
-
-
+
+
+ {# Bill items#}
+ {% for vm in vms %}
+
+ {{ vm.name }} |
+ {{ vm.cores }} |
+ {{ vm.memory|floatformat }} GiB |
+ {{ vm.disk_size|floatformat }} GiB |
+ {{ vm.price|floatformat }} CHF |
+
+
+ {% endfor %}
+ {# Bill total#}
+
+ {% trans "Total:" %} |
+ {{ bill.total_price}} CHF |
+
+
+
+
+ {# Bill Footer #}
+
+ {% trans "Alles Preise in CHF mit 8% Mehrwertsteuer." %}
+ {% trans "Betrag zahlbar innerhalb von 30 Tagen ab Rechnungseingang." %}
+ {% trans "Kontoverbindung:" %}
+
+
+ {% trans "IBAN:" %}
+
+
+ {% trans "BIC:" %}
+
+
+
+
+ {% trans "CH02 ............" %}
+
+
+ {% trans "POFICHBEXXX" %}
+
+
+
+
{% endblock %}