{% extends 'base.html' %} {% load basky_tags %} {% block page_title %}Your Basket{% endblock %} {% block content %} {% for item in basket.basketitem_set.all %} {% if forloop.first %}
{% csrf_token %} {% endif %} {% if forloop.last %}
Item Quantity Total Remove
{{basket.total_items}} item{{basket.total_items|pluralize}} {{basket.total}}
{{item.description}} {{item.total}}
{% endif %} {% empty %}

Your basket is empty.

{% endfor %} {% endblock %}