{% extends 'admin_pages/base_admin.html' %} {% block title %}Product List | Admin Panel{% endblock %} {% block content %}

Product List

{% block breadcrumbs %} {% endblock %}
{% if perms.website.add_product %} Add Product {% endif %}
{% csrf_token %}
{% if perms.website.bulk_status %}
{% endif %} {% if perms.website.bulk_delete %}
{% endif %} {% if perms.website.download_excel %}
{% endif %} {% if perms.website.download_pdf %}
{% endif %}
{% for item in product %} {% empty %} {% endfor %}
ID Name Category Price Stock Featured Actions
{{ item.id }} {{ item.name }} {{ item.category }} ${{ item.price }} {{ item.stock }} {% if item.is_featured %} Yes {% else %} No {% endif %} {% if perms.website.change_product %} Edit {% endif %} {% if perms.website.delete_product %} Delete {% endif %}
No products found.
{% if product.has_other_pages %} {% endif %} {% endblock %}