{% if not category %}
<h4>{% trans "Products" %}</h4>
{% endif %}
<ul>
{% for product in results.products %}
<li><a href="{{ product.get_absolute_url }}">{{ product.translated_name }}</a> {% trans "for" %} {{ product|discount_price:storewide_sale|currency}}</li>
{% endfor %}
</ul>
{% else %}