diff --git a/hosting/templates/hosting/bill_detail.html b/hosting/templates/hosting/bill_detail.html index f871e5ed..11472039 100644 --- a/hosting/templates/hosting/bill_detail.html +++ b/hosting/templates/hosting/bill_detail.html @@ -49,8 +49,8 @@ {{ vm.name }} {{ vm.cores }} - {{ vm.memory|floatformat }} GiB - {{ vm.disk_size|floatformat }} GiB + {{ vm.memory|floatformat }} GB + {{ vm.disk_size|floatformat }} GB {{ vm.price|floatformat }} CHF diff --git a/hosting/templates/hosting/includes/_pricing.html b/hosting/templates/hosting/includes/_pricing.html index c5cb2bf1..8abbf26f 100644 --- a/hosting/templates/hosting/includes/_pricing.html +++ b/hosting/templates/hosting/includes/_pricing.html @@ -42,14 +42,14 @@
  • - +
  • - +
  • @@ -79,4 +79,4 @@ - \ No newline at end of file + diff --git a/hosting/templates/hosting/order_detail.html b/hosting/templates/hosting/order_detail.html index 7705a006..b691f34d 100644 --- a/hosting/templates/hosting/order_detail.html +++ b/hosting/templates/hosting/order_detail.html @@ -51,9 +51,9 @@

    {% trans "Cores"%} {{vm.cores}}


    -

    {% trans "Memory"%} {{vm.memory}} GiB

    +

    {% trans "Memory"%} {{vm.memory}} GB


    -

    {% trans "Disk space"%} {{vm.disk_size}} GiB

    +

    {% trans "Disk space"%} {{vm.disk_size}} GB


    {% trans "Total"%}

    {{vm.price}} CHF

    diff --git a/hosting/templates/hosting/payment.html b/hosting/templates/hosting/payment.html index db45c282..e41f57d7 100644 --- a/hosting/templates/hosting/payment.html +++ b/hosting/templates/hosting/payment.html @@ -18,10 +18,10 @@ class="pull-right">{{request.session.specs.cpu|floatformat}}


    {%trans "Memory"%} {{request.session.specs.memory|floatformat}} GiB

    + class="pull-right">{{request.session.specs.memory|floatformat}} GB


    {%trans "Disk space"%} {{request.session.specs.disk_size|floatformat}} GiB

    + class="pull-right">{{request.session.specs.disk_size|floatformat}} GB


    Total

    {{request.session.specs.price }} CHF

    diff --git a/hosting/templates/hosting/virtual_machine_detail.html b/hosting/templates/hosting/virtual_machine_detail.html index 11f0e4ba..441d6260 100644 --- a/hosting/templates/hosting/virtual_machine_detail.html +++ b/hosting/templates/hosting/virtual_machine_detail.html @@ -80,14 +80,14 @@
    {% trans "Memory"%}
    - {{virtual_machine.memory}} GiB + {{virtual_machine.memory}} GB
    {% trans "Disk"%} - {{virtual_machine.disk_size|floatformat:2}} GiB + {{virtual_machine.disk_size|floatformat:2}} GB