{% extends "oscar/layout.html" %} {% load i18n %} {% load product_tags %} {% block title %} {% trans "Offers" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% 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 %}

{% trans "Browse products in offer" %}

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