{% extends 'oscar/promotions/baseproductlist.html'%} {% load i18n %} {% load product_tags thumbnail %} {% block content %} {{ promotion.name }} {{ promotion.description|safe }} {% for product in products %} {% with image=product.primary_image %} {% thumbnail image.original "50x50" crop="center" as thumb %} {% endthumbnail %} {% endwith %} {{ product.get_title|truncatechars:25 }} {% endfor %} {% if block.link_url %} {% trans "See more" %} {% endif %} {% endblock %}