{% extends "layout.html" %} {% load i18n %} {% block title %} {{ offer.name }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {{ offer.name }} {% endblock %} {% block content %} {% if not offer.is_active %}
{% trans " This offer has expired " %}
{% endif %} {% if offer.description %}
{{ offer.description|safe }}
{% endif %} {% if upsell_message %}

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

{{ upsell_message }}

{% endif %} {% if products.count %}
{% include "partials/pagination.html" %}
    {% for product in products %}
  1. {% include "catalogue/partials/product.html" %}
  2. {% endfor %}
{% include "partials/pagination.html" %}
{% else %}

{% trans "No products found." %}

{% endif %} {% endblock content %}