{% extends 'site.tmpl' %} {% load thumbnail %} {% load i18n %} {% block _title %}{{ category_name }} | {% trans 'Products' %} | {{ block.super }}{% endblock %} {% block breadcrumbs %}{% include 'includes/breadcrumbs.html' %}{% endblock %} {% block content %}

{% blocktrans %}Products in '{{ category }}' {% endblocktrans %}

{% for product in products %} {% if forloop.counter|divisibleby:"3" %} {% endif %} {% endfor %}

{{ product.name }}

{% thumbnail product.image "100x100" as im %} {{ product.image.filename }} {% endthumbnail %}
{% endblock %}