{% extends 'base.html' %} {% load static %} {% block content %} {% if 'search' in request.path %} Search Result {% else %} Our Store {% endif %} {{ product_count }} items found {% if products %} {% for product in products %} {{ product.product_name }} $ {{ product.price }} View Details {% endfor %} {% else %} No result found. Please try again. {% endif %} {% if products.has_other_pages %} {% if products.has_previous %} Previous {% else %} Previous {% endif %} {% for i in products.paginator.page_range %} {% if products.number == i %} {{i}} {% else %} {{i}} {% endif %} {% endfor %} {% if products.has_next %} Next {% else %} Next {% endif %} {% endif %} {% endblock %}