Это мой пользовательский код контекста для отображения корзины
def cart(request):
return {'cart': Cart(request)}
, и я добавил эту строку в контекстные_процессоры в настройках
'appname.context_processor.cart',
, но не вышел на базу. html шаблоны
код шаблона
{% with total_items=cart|length %}
{% if cart|length > 0 %}
Your cart:
<a href="{% url 'cart_detail' %}">
{{ total_items }} item{{ total_items|pluralize }},
${{ cart.get_total_price }}
</a>
{% else %}
Your cart is empty.
{% endif %}
{% endwith %}