{% extends "shop/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Shopping Cart" %} - Fursuit Shop{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Shopping Cart" %}

{% if cart_items %} {% for item in cart_items %}
{{ item.product.name }}
{{ item.product.name }}

{{ item.product.description|truncatewords:15 }}

{% if item.product.product_type == 'fursuit' %} Fursuit {% else %} Printed Item {% endif %} {% if item.product.is_custom_order %} Custom Order {% endif %}
{{ item.quantity }}
{% if item.product.on_sale %} {{ item.product.sale_price }} € {{ item.product.base_price }} € {% else %} {{ item.product.base_price }} € {% endif %}
Total: {{ item.total_price }} €
{% endfor %}
{% trans "Cart Summary" %}
{% trans "Subtotal" %}: {{ cart_subtotal }} €
{% trans "Shipping" %}: {{ shipping_cost }} €
{% if discount_amount %}
{% trans "Discount" %}: -{{ discount_amount }} €
{% endif %}
{% trans "Total" %}: {{ cart_total }} €
{% trans "Shipping Options" %}
{% else %}

{% trans "Your cart is empty" %}

{% trans "Looks like you haven't added any items to your cart yet." %}

{% trans "Continue Shopping" %}
{% endif %}
{% if cart_items %}
{% trans "Order Summary" %}
{% for item in cart_items|slice:":3" %}
{{ item.product.name }}
{{ item.product.name }}
Qty: {{ item.quantity }}
{{ item.total_price }} €
{% endfor %} {% if cart_items|length > 3 %}
+{{ cart_items|length|add:"-3" }} more items
{% endif %}
{% trans "Total" %} {{ cart_total }} €
{% trans "Secure checkout with SSL encryption" %}
{% endif %}
{% if related_products %}

{% trans "You might also like" %}

{% for product in related_products %}
{{ product.name }} {% if product.on_sale %}
Sale!
{% endif %}
{{ product.name }}

{{ product.description|truncatewords:10 }}

{% if product.on_sale %} {{ product.sale_price }} € {{ product.base_price }} € {% else %} {{ product.base_price }} € {% endif %}
{% endfor %}
{% endif %}
{% endblock %}