{% extends "layout.html" %} {% load i18n %} {% load product_tags %} {% block title %} {% trans "Offers" %} | {{ block.super }} {% endblock %} {% comment %} {% block breadcrumbs %} {% endblock %} {% endcomment %} {% block headertext %} {% trans "Offers" %} {% endblock %} {% block content %}
{% if not offers %}

{% trans "There are no site offers at the moment." %}

{% else %} {% for offer in offers %}

{{ offer.name }}

{% if offer.description %}

{{ offer.description|safe }}

{% endif %} {% if offer.has_products %}
{% for product in offer.products|slice:":12" %}
{% render_product product %}
{% endfor %}

{% trans "Browse products in offer" %}

{% endif %}
{% endfor %} {% endif %}
{% endblock content %}