{% extends "base.html" %} {% block title %}{{ product.name }} - Golden Uniforms{% endblock %} {% block content %}
{% if product.image_url %} {{ product.name }} {% else %} {% endif %}

{{ product.name }}

{% if product.is_featured %} Featured {% endif %} {% if product.is_clearance %} On Sale {% endif %} {{ product.category_ref.name }} {% if product.subcategory_ref %} {{ product.subcategory_ref.name }} {% endif %}

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

{% if product.description %}
Description

{{ product.description }}

{% endif %}
Availability
{% if product.stock_quantity > 0 %} In Stock ({{ product.stock_quantity }} available) {% else %} Out of Stock {% endif %}
{% if product.variants %}
Available Colors
{% for variant in product.variants %}
{{ variant.color }}
{% endfor %}
{% endif %} {% if product.stock_quantity > 0 or (product.variants and product.variants|selectattr("stock_quantity", "gt", 0)|list) %}
Total Price: KES {{ "%.2f"|format(product.price) }}
{% else %}

This item is currently unavailable

{% endif %}
{% if product.stock_quantity > 0 %}
{% if product.image_url %} {{ product.name }} {% else %}
{% endif %}
{{ product.name[:20] }}{% if product.name|length > 20 %}...{% endif %}
KES {{ "%.0f"|format(product.price) }}
{% endif %}
Product Information
  • Category: {{ product.category_ref.name }}
  • {% if product.subcategory_ref %}
  • Subcategory: {{ product.subcategory_ref.name }}
  • {% endif %}
  • Product ID: #{{ product.id }}
{% if related_products %}

Related Products

{% for related_product in related_products %}
{% if related_product.image_url %} {{ related_product.name }} {% else %} {% endif %}
{{ related_product.name }}
KES {{ "%.2f"|format(related_product.price) }} View
{% endfor %}
{% endif %}
{% endblock %}