{% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "Checkout" %} - Fursuit Shop{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
1
{% trans "Shipping" %}
2
{% trans "Payment" %}
3
{% trans "Confirm" %}
{% if step == 'address' %}

{% trans "Shipping Address" %}

{% csrf_token %}
{% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{% if form.address.errors %}
{{ form.address.errors }}
{% endif %}
{% if form.city.errors %}
{{ form.city.errors }}
{% endif %}
{% if form.zip.errors %}
{{ form.zip.errors }}
{% endif %}
{% if form.country.errors %}
{{ form.country.errors }}
{% endif %}

{% elif step == 'payment' %}

{% trans "Payment Method" %}

{% csrf_token %}
PayPal

{% trans "Fast and secure payment with PayPal" %}

{% trans "Credit Card" %}

{% trans "Pay with Visa, Mastercard, or American Express" %}

{% trans "Bank Transfer" %}

{% trans "Pay via bank transfer" %}

{% if form.payment_method.errors %}
{{ form.payment_method.errors }}
{% endif %}
{% trans "Back to Shipping" %}
{% elif step == 'confirm' %}

{% trans "Order Confirmation" %}

{% trans "Shipping Address" %}

{{ order.shipping_address.first_name }} {{ order.shipping_address.last_name }}

{{ order.shipping_address.address }}

{{ order.shipping_address.zip }} {{ order.shipping_address.city }}

{{ order.shipping_address.get_country_display }}

{% trans "Payment Method" %}

{% if order.payment_method == 'paypal' %} PayPal {% elif order.payment_method == 'credit_card' %} {% trans "Credit Card" %} {% else %} {% trans "Bank Transfer" %} {% endif %}

{% trans "Order Items" %}
{% for item in cart.items.all %}
{{ item.quantity }}x {{ item.product.name }} {% if item.size %} ({{ item.size }}) {% endif %}
{{ item.get_subtotal }} €
{% endfor %}

{% trans "Subtotal" %} {{ cart.get_total }} €
{% if cart.get_total < 200 %}
{% trans "Shipping" %} 5.99 €
{% else %}
{% trans "Shipping" %} {% trans "FREE" %}
{% endif %}
{% trans "Total" %} {% if cart.get_total < 200 %} {{ cart.get_total|add:"5.99" }} € {% else %} {{ cart.get_total }} € {% endif %}
{% csrf_token %}
{% trans "Back to Payment" %}
{% endif %}
{% trans "Order Summary" %}
{% for item in cart.items.all %}
{{ item.quantity }}x {{ item.product.name }}
{{ item.get_subtotal }} €
{% endfor %}
{% trans "Subtotal" %} {{ cart.get_total }} €
{% if cart.get_total < 200 %}
{% trans "Shipping" %} 5.99 €
{% else %}
{% trans "Shipping" %} {% trans "FREE" %}
{% endif %}
{% trans "Total" %} {% if cart.get_total < 200 %} {{ cart.get_total|add:"5.99" }} € {% else %} {{ cart.get_total }} € {% endif %}
{% endblock %} {% block extra_js %} {% if step == 'payment' %} {% endif %} {% endblock %}