{% extends "admin/base.html" %} {% block title %}Manage Products{% endblock %} {% block content %}

Products

Add Product
{% if products %}
{% for product in products %} {% endfor %}
Image Name Category Price Stock Status Actions
{% if product.image_url %} {{ product.name }} {% else %} {% endif %}
{{ product.name }} {% if product.is_featured %} Featured {% endif %} {% if product.is_clearance %} Clearance {% endif %} {{ product.category_ref.name }} KES {{ "%.2f"|format(product.price) }} {{ product.stock_quantity }} {% if product.stock_quantity > 0 %} In Stock {% else %} Out of Stock {% endif %}
{% else %}
No products available

Start by adding your first product.

Add Product
{% endif %}
{% endblock %}