{% extends "templates/web.html" %} {% block title %} {{ "Shopping Cart" }} {% endblock %} {% block header %}

{{ _("My Cart") }}

{% endblock %} {% block script %} {% endblock %} {% block style %} {% endblock %} {% block header_actions %} {% if doc.items %} {% endif %} {% endblock %} {% block page_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" %}
{% if doc.tc_name %} {% endif %}
{% include "templates/includes/cart/cart_address.html" %}
{% endif %}
{% endblock %}