{% extends "base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block header_title %}Products{% endblock %} {% block content %}
{{ search_form.category }}
{% if user.role == 'admin' or user.role == 'manager' %} Add Product Categories {% endif %}
Product List
{% if products %}
{% for product in products %} {% endfor %}
Image Name Category Price Stock Status Actions
{% if product.image %} {{ product.name }} {% else %}
{% endif %}
{{ 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 %}
{% if user.role == 'admin' or user.role == 'manager' %} {% endif %}
{% if products.has_other_pages %} {% endif %} {% else %}

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 %}
{% endif %}
{% endblock %}