{% extends "oscar/offer/list.html" %} {% load i18n %} {% load product_tags %} {% block body_class %}offer-page{% endblock body_class %} {% 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 %}