{% extends "store/base.html" %} {% load static %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% block title %}Products{% endblock title %} {% block content %}
{% for item in items %} {% endfor %}
ID Name Category Quantity Price Expiring Date Vendor Action
{{ item.id }} {{ item.name }} {{ item.category }} {{ item.quantity }} {{ item.price }} {{ item.expiring_date }} {{ item.vendor }} Edit Delete
{% if is_paginated %} {% endif %}
{% endblock content %}