{% extends 'partials/backend.html' %} {% load static %} {% load humanize %} {% block content %} Log Details Filter All {{ users.count }}Active {{ users.count }} Name Lists --> No. Which Log Status Action {% for u in users %} {{ u.id }} {{ u.which_log.name }} {{ u.details }} {% if u.used == True %} {% else %} {% endif %} 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 %}