{% extends "oscar/layout.html" %} {% load i18n %} {% load product_tags %} {% block title %} {{ offer.name }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %}{{ offer.name }}{% endblock %} {% block content %} {% if not offer.is_available %}
{% trans " This offer is no longer available." %}
{% endif %} {% if upsell_message %}
{% if offer.description %}

{{ offer.description|safe }}

{% endif %}

{% trans "What you need to do" %}

{{ upsell_message }}

{% endif %} {% if products %}
    {% include 'oscar/catalogue/partials/browse_products.html' %}
{% else %}

{% trans "No products found." %}

{% endif %} {% endblock content %}