{# templates/adminpanel/product_list.html #} {% extends "adminpanel/base.html" %} {% block pagetitle %}Products{% endblock %} {% block page_header %}Products{% endblock %} {% block header_actions %}
+ Add
{% endblock %} {% block content %}
{% for p in items %} {% empty %} {% endfor %}
Title Category Price In stock Actions
{{ p.title }} {{ p.category.name }} $ {{ p.price }} {% if p.in_stock %} Yes {% else %} No {% endif %} Edit Delete
No products found.
{% if page_obj %} {% endif %} {% endblock %}