{% extends 'base.html' %} {% block title %}Offers{% endblock %} {% block content %}
Offers
Add Offer
{% for offer in offers %} {% empty %} {% endfor %}
Code Name Type Value Valid From Valid Until Status Actions
{{ offer.code }} {{ offer.name }} {{ offer.get_offer_type_display }} {% if offer.offer_type == 'percentage' %} {{ offer.discount_percentage }}% {% elif offer.offer_type == 'fixed_amount' %} {{ offer.discount_amount }} {% elif offer.offer_type == 'buy_x_get_y' %} Buy {{ offer.buy_quantity }} Get {{ offer.get_quantity }} {% endif %} {{ offer.start_date }} {{ offer.end_date }} {% if offer.is_active %} Active {% else %} Inactive {% endif %} View Edit Delete
No offers found.
{% endblock %}