{% extends 'cPanel/base.html' %} {% load cms_tags %} {% block content %} Blog Comment List {% if page_obj %} Blog Date View {% for enq in page_obj %} {{enq.title}} {{enq.first_published_at |date:'d M, y'}} 👁 {% endfor %} {% else %} No Record Found {% endif %} {% if page_obj.has_previous %} « Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_next %} Next » {% endif %} {% endblock content %} {% block script %} {% endblock script %}