{% extends 'base.html' %}{% comment %}PRODUCTS SEARCH PAGE{% endcomment %} {% load i18n %} {% load thumbnail %} {% block page-title %}Gordini | {% trans "Search" %}{% endblock %} {% block shop-menu %} {% include 'shared/shop-menu.html' %} {% endblock %} {% block body-id %}products-list{% endblock %} {% block content %} {% include 'shared/search-bar.html' %}
{% else %}

{% trans "Your search:" %} "{{ keywords }}"

{% trans "Sorry! No result found" %}

{% trans "Try again by typing a keyword or a style #" %}

{% trans "Search Tips" %}

{% endif %} {% if paginator.num_pages > 1 %} {% if previous %} {% trans "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 %} {% trans "Next" %} {% endif %} {% endif %} {% endblock %}