{% extends "base.html" %} {% load widget_tweaks %} {% block title %} Suppliers List {% endblock title %} {% block content %}
Suppliers List
Add New Supplier

{% if object_list %} {% for supplier in object_list %} {% endfor %}
Name Phone No GSTIN No Actions

{{ supplier.name }}

{{ supplier.phone }} {{ supplier.gstin }}
{% if is_paginated %} {% if page_obj.has_previous %} First Previous {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} Next Last {% endif %} {% endif %}
{% else %}







WOW, SUCH EMPTY
{% endif %} {% endblock content %}