{% extends "shop/base.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_util %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Recently Added" %}
  • {% endblock %} {% block content %}

    {% trans "Recently Added" %}

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

    {{ product.translated_name }}

    {% endfor %} {% if page.has_other_pages %} {% endif %} {% else %}

    {% trans "Bad Page" %}

    {% endif %} {% endblock %}