{% extends 'partials/backend.html' %} {% load static %} {% load humanize %} {% block content %} Logs Filter All {{ his.count }} Name Lists No. Name Category Amount Qty Action {% for h in his %} {{ h.id }} {{ h.name }} {{ h.cat.name }} {{ h.price|floatformat:2|intcomma }} {{ h.qty }} Edit Delete {% endfor %} {# Previous Page Link #} {% if page_obj.has_previous %} {% endif %} {# Page Numbers #} {% for num in page_obj.paginator.page_range %} {% if num >= page_obj.number|add:'-2' and num <= page_obj.number|add:'2' %} {{ num }} {% endif %} {% endfor %} {# Next Page Link #} {% if page_obj.has_next %} {% endif %} {% endblock content %}