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

{{ _("Shopping Cart") }}

{% endblock %} {% block header_actions %} {% endblock %} {% block page_content %} {% from "templates/includes/macros.html" import item_name_and_description %} {% if doc.items %}
{{ _('Items') }}
{% if cart_settings.enable_checkout %} {% endif %} {% include "templates/includes/cart/cart_items.html" %} {% if cart_settings.enable_checkout %} {% include "templates/includes/order/order_taxes.html" %} {% endif %}
{{ _('Item') }} {{ _('Quantity') }}{{ _('Subtotal') }}
{% if cart_settings.enable_checkout %} {{ _('See past orders') }} {% else %} {{ _('See past quotations') }} {% endif %}
{% if doc.items %}
{{ _("Continue Shopping") }} {% if cart_settings.enable_checkout %} {% else %} {% endif %}
{% endif %}
{% if doc.items %} {% if doc.tc_name %} {% endif %}
{% include "templates/includes/cart/cart_address.html" %}
{% endif %}
{% else %}
Empty State
{{ _('Your cart is Empty') }}

{% if cart_settings.enable_checkout %} {{ _('See past orders') }} {% else %} {{ _('See past quotations') }} {% endif %}
{% endif %} {% endblock %} {% block base_scripts %} {% endblock %}