{% extends 'store/layout/layout.html' %} {% load static %} {% block title %}Products{% endblock %} {% block style %}{% endblock %} {% block body %}
{% if products %}
Clear
{% include "store/includes/products.html" with products=products %} {% include "store/includes/pagination.html" with page_obj=products search_query=search_query %} {% else %} Results 0 {% endif %}
{% endblock %} {% block script %} {% endblock %}