{% extends "shop/base.html" %} {% load i18n %} {% load satchmo_currency satchmo_discounts %} {% block navbar %}
  • {% trans "Home" %}
  • {% endblock %} {% block content %} {% if not results.categories and not results.products %}

    {% trans "Nothing found" %}

    {% else %} {% if category %}{% with results.categories.0.translated_name as category_name %}

    {% blocktrans %}Search results for {{ category_name }} products{% endblocktrans %}

    {% endwith %} {% else %} {% if results.categories %}

    {% trans "Categories" %}

    {% endif %} {% endif %} {% if results.products %} {% if not category %}

    {% trans "Products" %}

    {% endif %} {% else %} {% if category %}

    {% trans "Nothing found" %}

    {% endif %} {% endif %} {% endif %} {% endblock %}