{% extends 'store/index.html' %} {% load static %} {% block content %}

Products{% if category %} in {{ category.name }}{% endif %}{% if classification %} - {{ classification.name }}{% endif %}

{% for product in products %}

20% off
{{ product.name }}
${{ product.price|floatformat:2 }}

{% endfor %}
{% endblock %}