{% extends 'base.html' %} {% load i18n %} {% block content %}

{{ category.name }}

{{ category.products.count }} products found

← All Categories
{% for product in products %}
{% if product.images.all %} {{ product.name }} {% elif product.image %} {{ product.name }} {% endif %}
{{ product.name }}
{% with discount=product.get_active_discount %} {% if discount %}
${{ product.price|floatformat:2 }}
${{ product.get_discounted_price|floatformat:2 }} Save ${{ product.get_discount_amount|floatformat:2 }} ({{ discount.discount_percentage }}% off)
{% else %}

${{ product.price|floatformat:2 }}

{% endif %} {% endwith %}
View Details
{% empty %}

No products found in this category yet.

Create Product
{% endfor %}
{% endblock %}