{% block title %} {{ "Shopping Cart" }} {% endblock %} {% block header %}

{{ _("My Cart") }}

{% endblock %} {% block script %}{% include "templates/includes/cart.js" %}{% endblock %} {% block style %}{% include "templates/includes/cart.css" %}{% endblock %} {% block header_actions %} {% if doc.items %} {% endif %} {% endblock %} {% block content %} {% from "templates/includes/macros.html" import item_name_and_description %}
Items
Qty
Amount
{% if doc.items %}
{% include "templates/includes/cart/cart_items.html" %}
{% else %}

{{ _("Cart is Empty") }}

{% endif %}
{% if doc.items %}
{% include "templates/includes/order/order_taxes.html" %}
{% include "templates/includes/cart/cart_address.html" %}
{% endif %}
{% endblock %}