{% extends 'core/base.html' %} {% block title %}Cart{% endblock title %} {% block content %}
| Product | Quantity | Price | ||
|---|---|---|---|---|
|
|
{{item.product.title}} | ${{item.quantity}} - + | ${{ item.total_price }} | Remove |
| Total Cost | {{ cart|length }} | ${{cart.get_total_cost}} | ||
You don't have any products in your cart.
{% endif %} {% endblock content %} {% block scripts %} {% endblock scripts %}