{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 %} {% load i18n %} {% load custom_tags %} {% block content %}
{% trans "Order #" %} {{order.id}}
{% endif %}{% trans "Date" %}: {% if order %} {{order.created_at|date:'Y-m-d h:i a'}} {% else %} {% now "Y-m-d h:i a" %} {% endif %}
{% if order %}{% trans "Status" %}: {% if vm.terminated_at %} {% trans "Terminated" %} {% elif order.status == 'Approved' %} {% trans "Approved" %} {% else %} {% trans "Declined" %} {% endif %}
{% endif %}
{% if order %}
{{user.name}}
{{order.billing_address.street_address}}, {{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}
{% else %}
{% with request.session.billing_address_data as billing_address %}
{{billing_address.cardholder_name}}
{{billing_address.street_address}}, {{billing_address.postal_code}}
{{billing_address.city}}, {{billing_address.country}}
{% endwith %}
{% endif %}
{% if order %}
{{order.cc_brand}} {% trans "ending in" %} ****
{{order.last4}}
{{user.email}}
{% else %}
{{cc_brand|default:_('Credit Card')}} {% trans "ending in" %} ****{{cc_last4}}
{% if request.user.is_authenticated %}
{{request.user.email}}
{% else %}
{{request.session.user.email}}
{% endif %}
{% endif %}
{% trans "Product" %}: {% if vm.name %} {{ vm.name }} {% else %} {{ request.session.template.name }} {% endif %}
{% trans "Period" %}: {{ vm.created_at|date:'Y-m-d h:i a' }} - {{ subscription_end_date|date:'Y-m-d h:i a' }}
{% endif %}{% trans "Cores" %}: {% if vm.cores %} {{vm.cores|floatformat}} {% else %} {{vm.cpu|floatformat}} {% endif %}
{% trans "Memory" %}: {{vm.memory}} GB
{% trans "Disk space" %}: {{vm.disk_size}} GB
{% trans "Total" %} {{vm.price}} CHF