{% extends "base.html" %} {% block title %}Products - Golden Uniforms{% endblock %} {% block content %}
Categories
All Products {% for category in categories %} {{ category.name }} {% endfor %}

{% if search_query %} Search Results for "{{ search_query }}" {% elif selected_subcategory %} {{ selected_subcategory.name }} {% elif selected_category %} {{ selected_category.name }} {% else %} All Products {% endif %}

{% if search_results_count is not none %} {{ search_results_count }} results found {% else %} {{ products|length }} products found {% endif %}
{% if selected_category and subcategories %}
All {{ selected_category.name }} {% for subcategory in subcategories %} {{ subcategory.name }} {% endfor %}
{% endif %} {% if products %}
{% for product in products %}
{% if product.image_url %} {{ product.name }} {% else %} {% endif %}
{% if product.is_featured %} Featured {% endif %} {% if product.is_clearance %} Sale {% endif %}
{{ product.name }}

{{ product.description[:100] }}{% if product.description|length > 100 %}...{% endif %}

KES {{ "%.2f"|format(product.price) }}
{% endfor %}
{% else %}

No products available

Check back later for new arrivals!

{% endif %}
{% endblock %}