{% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "Order Successful" %} - Fursuit Shop{% endblock %} {% block content %}

{% trans "Thank You for Your Order!" %}

{% trans "Your payment was successful and your order has been confirmed." %}
{% trans "We'll send you an email with your order details shortly." %}

{% trans "Order Details" %}

{% trans "Order Number" %}: #{{ order.id }}

{% trans "Order Date" %}: {{ order.created_at|date:"d.m.Y" }}

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

{% trans "Shipping To" %}:

{{ 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 "Ordered Items" %}
{% for product in order.products.all %}
{% if product.image %} {{ product.name }} {% endif %}
{{ product.name }}
{% if product.product_type == 'fursuit' %} {% trans "Fursuit" %} {% else %} {% trans "Printed Item" %} {% endif %}
{{ product.base_price }} €
{% endfor %}

{% trans "Subtotal" %}: {{ order.total_price }} €

{% if order.total_price < 200 %}

{% trans "Shipping" %}: 5.99 €

{% trans "Total" %}: {{ order.total_price|add:"5.99" }} €

{% else %}

{% trans "Shipping" %}: {% trans "FREE" %}

{% trans "Total" %}: {{ order.total_price }} €

{% endif %}
{% endblock %}