{% extends 'base.html' %} {% 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 }}

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

View Details
{% empty %}

No products found in this category yet.

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