{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block title %} Offer management | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

Search

{% include 'partials/form_fields_inline.html' with form=form %} Reset

Create new offer

{{ queryset_description }}

{% if offers.count %}
{% csrf_token %} {% for offer in offers %} {% endfor %}
Offer name Status Start date End date Condition Benefit Date created
{{ offer.name }} {% if offer.is_active %}Active{% else %}Inactive{% endif %} {{ offer.start_date }} {{ offer.end_date }} {{ offer.condition.description }} {{ offer.benefit.description }} {{ offer.date_created }} Stats Edit Delete
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %}
{% else %}

No offers found.

{% endif %} {% endblock dashboard_content %}