{% extends "base.html" %} {% block page_heading %}Product Management{% endblock %} {% block content %}
| Product | Category | Price | Stock | Barcode | GST% | Actions |
|---|---|---|---|---|---|---|
| {{ p.product_name }} | {{ p.category }} | {{ p.price|currency }} | {% if p.stock <= 10 %} {{ p.stock }} {% else %} {{ p.stock }} {% endif %} | {% if p.barcode %} {{ p.barcode }} {% else %}—{% endif %} | {{ p.gst_rate or 18 }}% | {% if current_user.is_admin() %} {% endif %} |
| No products found. | ||||||