{% extends 'core/base.html' %} {% load static %} {% load currency_tags %} {% block title %}Products - SwiftPOS{% endblock %} {% block topbar_title %} Inventory - Products {% endblock %} {% block content %} {% with products=page_obj %}
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
Products
{{ page_obj.paginator.count }} products total
Reset
{% if products %} {% for product in products %} {% endfor %} {% else %} {% endif %}
Name SKU Category Stock Selling Price Status Actions
{{ product.name }}
SKU: {{ product.sku }}
{{ product.sku }} {{ product.category.name|default:'Uncategorized' }} {{ product.stock_quantity }} {{ currency_symbol }}{{ product.price|format_currency }} {% if product.stock_status == 'in_stock' %} In stock {% elif product.stock_status == 'low_stock' %} Low stock {% else %} Out of stock {% endif %}
No products found. Try adjusting your filters or add a new product.
{% if products.has_other_pages %}
Page {{ products.number }} of {{ products.paginator.num_pages }}
{% endif %}
{% endwith %} {% endblock %}