{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 %} {% load i18n %} {% load custom_tags %} {% block content %}
{% trans "Order #" %} {{order.id}}
{% endif %}{% trans "Invoice Date" %}: {% if order %} {{order.created_at|date:'Y-m-d H:i'}} {% else %} {% now "Y-m-d H:i" %} {% endif %}
{% if order %}{% trans "Status" %}: {% if 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:'Card'}} {% trans "ending in" %} ****
{{cc_last4}}
{% if request.user.is_authenticated %}
{{request.user.email}}
{% else %}
{{request.session.user.email}}
{% endif %}
{% endif %}
{% trans "Product" %}: {{vm.name}}
{% trans "Period" %} {{}}
{% endcomment %}{% 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