{% extends "base.html" %} {% load static %} {% block title %}Products - POS System{% endblock %} {% block page_pretitle %}
POS System
{% endblock %} {% block page_title %} Products {% endblock %} {% block page_actions %} Back to Dashboard Add Product {% endblock %} {% block content %}

Search & Filter

Clear
{% for product in products %}
{{ product.name|slice:":2"|upper }}
{{ product.name }}
{{ product.sku }}
{% if product.category %} {{ product.category.name }} {% endif %}
Price
RM {{ product.selling_price|floatformat:2 }}
Stock
{{ product.current_stock|floatformat:0 }} {% if product.unit_of_measure %} {{ product.unit_of_measure }} {% endif %}
{% if product.current_stock <= 0 %}
Out of Stock!
{% elif product.current_stock <= product.reorder_level %}
Low Stock! Reorder: {{ product.reorder_level }}
{% else %}
In Stock
{% endif %}
{% empty %}

No products found

{% if request.GET.search or request.GET.category or request.GET.stock_status %} Try adjusting your filters or search terms. {% else %} Start by adding your first product. {% endif %}

{% if request.GET.search or request.GET.category or request.GET.stock_status %} Clear Filters {% endif %} Add Product
{% endfor %}
{% if products.has_other_pages %}
{% endif %}
{% endblock %}