{% extends "nextcloud/base.html" %} {% load static compress i18n %} {% block title %} Request Details {% endblock %} {% block content %}
{%trans "Details" %}
{%trans "Confirm" %}
{%trans "Success" %}
{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% if not error %}
{% trans "Billed To" %}

{% with request.session.billing_address_data as billing_address %} {{billing_address.full_name}}
{{billing_address.street}}, {{billing_address.postal_code}}
{{billing_address.city}}, {{billing_address.country}} {% if billing_address.vat_number %}
{% trans "VAT Number" %} {{billing_address.vat_number}} {% if pricing.vat_country != "ch" and pricing.vat_validation_status != "not_needed" %} {% if pricing.vat_validation_status == "verified" %} {% else %} {% endif %} {% endif %} {% endif %} {% endwith %}

{{ balance }} CHF

{% trans "Available Balance"%}

NextCloud
{% trans "Cores" %} {% trans "Memory" %} {% trans "Disk space" %}
{{order.cores}} {{order.memory}} GB {{order.storage}} GB

Subtotal

{{pricing.subtotal|floatformat:2}} CHF

{% if pricing.discount.amount > 0 %}

{{pricing.discount.name }}

-{{pricing.discount.amount|floatformat:2}} CHF

{% endif %}

{% trans "" %}

{{pricing.subtotal_after_discount|floatformat:2}} CHF

{% trans "VAT for" %} {{pricing.vat_country}} ({{pricing.vat_percent}}%)

{{pricing.vat_amount}} CHF

{% trans "Total" %}

{{pricing.total|floatformat:2}} CHF

{% endif %}

{% csrf_token %}
{{domains_form.subdomain}}
{{ domains_form.subdomain.errors }} {% if domains_form.non_field_errors %}
{{ domains_form.non_field_errors }}
{% endif %}

{% if stripe_deposit_amount > 0 %}
By clicking "Confirm order" you agree to charge your active credit card with {{stripe_deposit_amount}} CHF to handle the wallet deficit.
{% endif %}
By clicking "Confirm order" you agree to our Terms of Service and this plan will charge your account balance with {{pricing.total|floatformat:2}} CHF
{% endblock %} {% block js_extra %} {% endblock js_extra %}