{% extends CMS_TEMPLATE %} {% load i18n thumbnail pcart_core theme_tags %} {% block sidebar_wrapper %}{% endblock %} {% block main_content_classes %}col-sm-12{% endblock %} {% block content %}
{% if cart.item_count > 0 %}
{% csrf_token %}
{% for item in cart.items %}
{% with image=item.product.images.first %} {% if image %}{{image}}{% endif %} {% endwith %}
{{ item.price|money }}

{% trans "Total" %}: {{ item.line_price|money }}

{% endfor %}

{% trans "Subtotal" %} {{ cart.total_price|money }}

{% trans "Continue shopping" %} {% trans "or" %} {% trans "or" %} {% comment %}Paypal and Google checkout buttons{% endcomment %} {% if additional_checkout_buttons %}

{{ content_for_additional_checkout_buttons }}

{% endif %}
{% comment %}

{{ site.name }} process all orders in {{ shop.currency }}. While the content of your cart is currently displayed in , you will checkout using {{ shop.currency }} at the most current exchange rate.

{% endcomment %} {% comment %} For the special instructions to be submitted with order, they need to use a name attribute set to 'note'. That's case-sensitive. {% endcomment %}
{% else %}

It appears that your cart is currently empty!

You can continue browsing here.

{% endif %}
{% include 'snippets/widget-payment-methods.html' %}
{% endblock %}