{% extends "shop/base.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_util %} {% block navbar %}
  • {% trans "Home" %}
  • {% endblock %} {% block content %} {% trans "Welcome to the shop." %} {% if all_products_list %}

    {% trans "Featured Items" %}

    {% for product in all_products_list %}
    {% if product.main_image %}
    {% thumbnail product.main_image.picture 85x85 as image %}
    {% endif %}

    {{ product.translated_name }}

    {% endfor %} {% endif %} {% if is_paginated %} {% endif %} {% endblock %}