{% 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 or cart_settings.show_price_in_quotation %} {% endif %} {% include "templates/includes/cart/cart_items.html" %} {% if cart_settings.enable_checkout or cart_settings.show_price_in_quotation %} {% include "templates/includes/cart/cart_items_total.html" %} {% endif %}
{{ _('Item') }} {{ _('Quantity') }}{{ _('Subtotal') }}
{% if cart_settings.enable_checkout %} {{ _('Past Orders') }} {% else %} {{ _('Past Quotes') }} {% endif %}
{% if doc.items %} {% endif %}
{% if doc.items %} {% if doc.terms %}
{{ _("Terms and Conditions") }}
{{ doc.terms }}
{% endif %}
{% set show_coupon_code = cart_settings.show_apply_coupon_code_in_website and cart_settings.enable_checkout %} {% if show_coupon_code == 1%}
{% endif %}
{% include "templates/includes/cart/cart_payment_summary.html" %}
{% 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 %} {{ include_script("frappe-web.bundle.js") }} {{ include_script("controls.bundle.js") }} {{ include_script("dialog.bundle.js") }} {% endblock %}