{% extends "base.html" %} {% block content %} Categories: All (current) Shirts Sport wears Outwears {% for item in object_list %} {% comment %} {{ item.get_category_display }} {{ item.title }} NEW $ {% if item.discount_price %} {{ item.discount_price }} {% else %} {{ item.price }} {% endif %} {% endfor %} {% if is_paginated %} {% if page_obj.has_previous %} « Previous {% endif %} {{ page_obj.number }} (current) {% if page_obj.has_next %} » Next {% endif %} {% endif %} {% endblock content %}