{% extends CMS_TEMPLATE %} {% load i18n thumbnail pcart_core theme_tags %} {% block extra_meta %}{% endblock %} {% 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 }}
{{ 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 %}
{% else %}

{% trans "It appears that your cart is currently empty!" %}

{% optional_url 'pcart_collection:all-collections' as go_shop_link %}

{% blocktrans %}You can continue browsing here.{% endblocktrans %}

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