{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Product List {% endblock title %} {% block content %}

All Product List

Add Product
{% for product in products %} {% empty %} {% endfor %}
Image Product Name Category Price Stock Featured Status Action
{% if product.images.all %} {{ product.name }} {% else %} {{ product.name }} {% endif %}
{{ product.name }} {{ product.category.name }} ₹{{ product.price }}

{{ product.stock }} Items Left

{% if product.feature == 1 %} Related Product {% elif product.feature == 2 %} Featured Product {% elif product.feature == 3 %} Popular Product {% elif product.feature == 4 %} Special Product {% else %} Unknown {% endif %} {% if product.status == 1 %} Active {% else %} Inactive {% endif %}
No products available.
{% endblock content %}