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

{{ offer.name }}

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

Description

{{ offer.description }}

{% endif %}

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 %}

No products found.

{% endif %} {% endblock content %}