{% extends 'admin/change_list.html' %} {% load i18n static admin_urls simpelcore_tags %} {% block extrahead %} {{ block.super }} {{ checkout_form.media }} {% endblock %} {% block content %}
{% for object in cl.queryset.all %} {% include 'admin/simpel_shop/cart_item.html' with object=object %} {% empty %}
{% include 'admin/includes/noresults.html' %}
{% endfor %}
{% trans "Cart Total" %}: {{ items_count }} {% trans "Items" %}
{{ items_total|currency }}
{% endblock content %}