{% extends "base_beer.html" %} {% load i18n static %} {% block title %}{% trans "Your Cart" %}{% endblock %} {% block content %}
shopping_cart

{% trans "Your Shopping Cart" %}

{% if cart_items %}
{% for item in cart_items %} {% endfor %}
{% trans "Item" %} {% trans "Description" %} {% trans "Quantity" %} {% trans "Price" %}
{% if item.recipe.image %} {{ item.recipe.title }} {% else %} restaurant {% endif %} {{ item.recipe.title }}
{% csrf_token %}
{{ item.total_price }} € delete
{% trans "Summary" %}
{% trans "Subtotal" %}
{{ total }} €
{% trans "Total" %}
{{ total }} €
{% csrf_token %}
arrow_back {% trans "Continue Shopping" %}
{% else %}
shopping_cart_off
{% trans "Your cart is empty." %}
{% trans "Start Shopping" %}
{% endif %}
{% endblock %}