{% extends 'base.html' %} {% block title %}{{ category.name }} - Thangka Arts{% endblock %} {% block content %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %}

Showing {{ page_obj.paginator.count }} products

{% if page_obj %}
{% for product in page_obj %}
{% if product.images.first %} {{ product.name }} {% else %}
{% endif %} {% if product.is_on_sale %}
-{{ product.discount_percentage }}%
{% endif %}
{{ product.name }}

{{ product.category.name }}

{{ product.dimensions }}

{% if product.is_on_sale %} ${{ product.sale_price }} ${{ product.price }} {% else %} ${{ product.price }} {% endif %}
View Details
{% csrf_token %}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No products found in this category

Check back soon for new {{ category.name }} products

Browse All Products
{% endif %}
{% endblock %}