{% extends "layout.html" %} {% load i18n %} {% block title %} {% trans "Offer" %} '{{ offer.name }}' | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block content %}

{{ offer.name }}

{% if not offer.is_active %}
{% trans " This offer has expired " %}
{% endif %} {% if offer.description %}

{% trans "Description" %}

{{ offer.description }}

{% endif %}

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

{{ upsell_message }}

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

{% trans "No products found." %}

{% endif %} {% endblock content %}