{% extends 'base.html' %} {% load thumbnail %} {% block shop-menu %} {% include 'shared/shop-menu.html' %} {% endblock %} {% block body-id %}products-list{% endblock %} {% block content %} {% include 'shared/search-bar.html' %}
{% csrf_token %}
Default : {{ default_sort }} - {{ default_collection }}
{% if paginator.num_pages > 1 %} {% if previous %} Previous {% endif %} {% for page in paginator.page_range %} {% if page < max_page and page > min_page %} {% if current == page %} {{ page }} {% else %} {{ page }} {% endif %} {% endif %} {% endfor %} {% if next %} Next {% endif %} {% endif %}
{% endblock %}