{% extends 'base.html' %} {% load thumbnail %} {% block shop-menu %} {% include 'shared/shop-menu.html' %} {% endblock %} {% block body-id %}products-list{% endblock %} {% block content %}
{% if count > 0 %}
{{ count }} results found
{% else %} {% include 'shared/search-bar.html' %}

Your search: {{keywords}}

Sorry! {{ count }} result found

Try again by typing a keyword or a style #

{% endif %} {% 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 %}