{% extends "admin/base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
| Product Name | Category | Subcategory | Price | Status | Created |
|---|---|---|---|---|---|
| {{ product.name }} | {{ product.category_name }} | {{ product.subcategory_name }} | ₹{{ product.price_current }} | {% if product.is_active %} Active {% else %} Inactive {% endif %} | {{ product.created_at[:10] }} |