{% extends "datacenterlight/base_hosting.html" %} {% load staticfiles bootstrap3 i18n custom_tags humanize %} {% block content %}
{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% if not error %}

{% blocktrans with page_header_text=page_header_text|default:"Invoice" %}{{page_header_text}}{% endblocktrans %}

{% trans "Date" %}: {% now "Y-m-d h:i a" %}


{% trans "Billed to" %}:

{% 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 %}


{% trans "Payment method" %}:

{{cc_brand|default:_('Credit Card')}} {% trans "ending in" %} ****{{cc_last4}}
{% trans "Expiry" %} {{cc_exp_year}}/{{cc_exp_month}}
{{request.user.email}}


{% trans "Order summary" %}

{% if generic_payment_details %}

{% trans "Product" %}:  {{ generic_payment_details.product_name }}

{% if generic_payment_details.vat_rate > 0 %}

{% trans "Price" %}: CHF {{generic_payment_details.amount_before_vat|floatformat:2|intcomma}}

{% trans "VAT for" %} {{generic_payment_details.vat_country}} ({{generic_payment_details.vat_rate}}%) : CHF {{generic_payment_details.vat_amount|floatformat:2|intcomma}}

{% trans "Total Amount" %} : CHF {{generic_payment_details.amount|floatformat:2|intcomma}}

{% else %}

{% trans "Amount" %}: CHF {{generic_payment_details.amount|floatformat:2|intcomma}}

{% endif %} {% if generic_payment_details.description %}

{% trans "Description" %}: {{generic_payment_details.description}}

{% endif %} {% if generic_payment_details.recurring %}

{% trans "Recurring" %}: Yes

{% endif %}
{% else %}

{% trans "Product" %}:  {{ request.session.template.name }}

{% trans "Cores" %}: {{vm.cpu|floatformat}}

{% trans "Memory" %}: {{vm.memory|intcomma}} GB

{% trans "Disk space" %}: {{vm.disk_size|intcomma}} GB


{% if vm.vat > 0 or vm.discount.amount > 0 %}
{% if vm.vat > 0 %}

{% trans "Subtotal" %} {{vm.price|floatformat:2|intcomma}} CHF

{% trans "VAT" %} ({{ vm.vat_percent|floatformat:2|intcomma }}%) {{vm.vat|floatformat:2|intcomma}} CHF

{% endif %} {% if vm.discount.amount > 0 %}

{%trans "Discount" as discount_name %} {{ vm.discount.name|default:discount_name }} - {{ vm.discount.amount }} CHF

{% endif %}

{% endif %}

{% trans "Total" %} {{vm.total_price|floatformat:2|intcomma}} CHF

{% endif %}

{% csrf_token %}
{% if generic_payment_details %} {% if generic_payment_details.recurring %} {% if generic_payment_details.recurring_interval == 'year' %}
{% blocktrans with total_price=generic_payment_details.amount|floatformat:2|intcomma %}By clicking "Place order" this plan will charge your credit card account with {{total_price}} CHF/year{% endblocktrans %}.
{% else %}
{% blocktrans with total_price=generic_payment_details.amount|floatformat:2|intcomma %}By clicking "Place order" this plan will charge your credit card account with {{total_price}} CHF/month{% endblocktrans %}.
{% endif %} {% else %}
{% blocktrans with total_price=generic_payment_details.amount|floatformat:2|intcomma %}By clicking "Place order" this payment will charge your credit card account with a one time amount of {{total_price}} CHF{% endblocktrans %}.
{% endif %} {% else %}
{% blocktrans with vm_total_price=vm.total_price|floatformat:2|intcomma %}By clicking "Place order" this plan will charge your credit card account with {{vm_total_price}} CHF/month{% endblocktrans %}.
{% endif %}
{% endif %}
{%endblock%}