{% extends "base.html" %} {% load static %} {% block title %}Product Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Product Name | Category | Price | Unit | Description | In Trash | Actions |
|---|---|---|---|---|---|---|
| {{ product.product_name }} | {% if product.category %}{{ product.category.name }}{% endif %} | {{ product.price }} | {{ product.unit }} | {{ product.description|striptags|truncatechars:80 }} | {% if product.trash %} Yes {% else %} No {% endif %} |