{% extends "nextcloud/base.html" %} {% load static compress i18n %} {% block title %} Request Details {% endblock %} {% block content %}
{%trans "Details" %}
{%trans "Confirm" %}
{%trans "Success" %}
{% csrf_token %}

{% trans "Order Details"%}


{% if details_form.non_field_errors %}
{{ details_form.non_field_errors }}
{% endif %}
Core
{% trans "RAM" %}
{% trans "GB" %}
{{details_form.pricing_name.as_hidden}}

{%trans "Billing Address"%}


{% for message in messages %} {% if 'vat_error' in message.tags %}
  • {{ message|safe }}
{% endif %} {% endfor %} {% if billing_address_form.non_field_errors %}
{{ billing_address_form.non_field_errors }}
{% endif %}
{{billing_address_form.full_name}} {{ billing_address_form.full_name.errors }}
{{billing_address_form.street}} {{ billing_address_form.full_name.errors }}
{{billing_address_form.city}} {{ billing_address_form.city.errors }}
{{billing_address_form.country}} {{ billing_address_form.country.errors }}
{{billing_address_form.postal_code}} {{ billing_address_form.postal_code.errors }}
{{billing_address_form.vat_number}} {{ billing_address_form.vat_number.errors }}
{% for field in billing_address_form %} {% if field.html_name in 'active,owner' %} {{ field.as_hidden }} {% endif %} {% endfor %}

{% trans "Payment Details"%}


{{ balance }} CHF

{% trans "Available Balance"%}

{% trans "Setup Fees"%} {{vm_pricing.set_up_fees}} CHF

{% trans "Recurring Price"%} {{request.session.pricing.recurring_price}} CHF

{% if vm_pricing.discount_amount %}

{% trans "Discount"%} - {{vm_pricing.discount_amount}} CHF

{% endif %}

{% trans "VAT" %} {{request.session.pricing.vat_amount}} CHF

{% trans "Total To Pay"%} {% if vm_pricing.vat_inclusive %}({%trans "including VAT" %}){% endif %} {{request.session.pricing.total}} CHF


{% with cards_len=cards|length %}

{% if cards_len > 0 %} {% blocktrans %}There is not enough balance in your account to proceed with this order. You can select a card or add a new card to fill up your account balance to proceed with the order.{% endblocktrans %} {% else %} {% blocktrans %}There is not enough balance in your account to proceed with this order. Please fill in your credit card information below.{% endblocktrans %} {% endif %}

{% for card in cards %}
{% endfor %} {% if cards_len > 0 %}
{% else%} {% include "uncloud_pay/includes/_card.html" %} {% endif %}
{% endwith %}

{% blocktrans %}You can use your account balance to make the payment. Press Continue to select the domain settings. You can review and confirm your order and payment in the next page.{% endblocktrans %}

{% endblock %} {% block js_extra %} {% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {% compress js %} {% endcompress %} {% endblock js_extra %}