{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 i18n %} {% block content %}

{%trans "Your Order" %}

{%trans "Cores" %}
{%trans "Memory" %}
{%trans "Disk space" %}
{%trans "Configuration" %}
{{request.session.specs.cpu|floatformat}}
{{request.session.specs.memory|floatformat}} GB
{{request.session.specs.disk_size|floatformat}} GB
{{request.session.template.name}}
Total {%trans "including VAT" %}
{{request.session.specs.price}} CHF

{%trans "Billing Address"%}


{% for field in form %} {% csrf_token %} {% bootstrap_field field show_label=False type='fields'%} {% endfor %} {% bootstrap_form_errors form type='non_fields'%}

{%trans "Credit Card"%}


{% blocktrans %} Please fill in your credit card information below. We are using Stripe for payment and do not store your information in our database. {% endblocktrans %}


{% if credit_card_data.last4 %}
Credit Card
Last 4: *****{{credit_card_data.last4}}
Type: {{credit_card_data.cc_brand}}

{% blocktrans %} You are not making any payment yet. After submitting your card information, you will be taken to the Confirm Order Page. {% endblocktrans %}

{% else %}

{% blocktrans %} You are not making any payment yet. After submitting your card information, you will be taken to the Confirm Order Page. {% endblocktrans %}

{% if paymentError %}

{% bootstrap_alert paymentError alert_type='danger' %}

{% endif %}
{% endif %}
{% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {% if credit_card_data.last4 and credit_card_data.cc_brand %} {%endif%} {%endblock%}