{% extends "base.html" %} {% block page_heading %}Product Management{% endblock %} {% block content %}
{% if current_user.is_admin() %} {% endif %}
{% for p in products %} {% else %} {% endfor %}
ProductCategoryPriceStockBarcodeGST%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.
Category Management
{% for c in categories %} {{ c.name }} {% endfor %}
{% endblock %}