{% extends "admin/base.html" %} {% block title %}Products{% endblock %} {% block content %}

Products Management

Add New Product
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
All Products ({{ products|length }})
{% if products|length == 0 %} {% else %} {% for product in products %} {% endfor %} {% endif %}
Image Name Category Subcategory Price Badge Status Actions

No products yet. Click "Add New Product" to get started!

{% if product.primary_image %} {{ product.name }} {% else %}
{% endif %}
{{ product.name }} {{ product.category_name }} {{ product.subcategory_name }} ₹{{ product.price_current }} {% if product.badge %} {{ product.badge }} {% endif %} {% if product.is_active %} Active {% else %} Inactive {% endif %}
{% endblock %}