{% extends "base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block header_title %}Products{% endblock %} {% block content %}
| Image | Name | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|
|
{% if product.image %}
|
{{ product.name }} | {% if product.category %} {{ product.category.name }} {% else %} Uncategorized {% endif %} | KSh {{ product.price }} | {% if product.is_low_stock %} Low Stock {% endif %} {{ product.quantity }} | {% if product.is_active %} Active {% else %} Inactive {% endif %} |
No products found. {% if search_form.query.value or search_form.category.value %}Try a different search.{% else %}{% if user.role == 'admin' or user.role == 'manager' %}Add your first product!{% endif %}{% endif %}
{% if user.role == 'admin' or user.role == 'manager' %} Add Product {% endif %}