{% 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 content %} {% from "erpnext/templates/includes/macros.html" import item_name_and_description %}

{{ _("Loading") }}...

{% if doc.items %} {% for d in doc.items %}
{{ item_name_and_description(d) }}

{{ _("Rate") + ': ' + d.get_formatted("rate") }}

{{ d.get_formatted("amount") }}
{% endfor %} {% else %}

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

{% endif %}

{{ _("Shipping Address") }}

Billing Address

{% endblock %}