{% extends 'base.html' %} {% block title %}Offer Details: {{ offer.code }}{% endblock %} {% block content %}
Offer Details: {{ offer.code }}
Edit Back to List
Basic Information
Code: {{ offer.code }}
Name: {{ offer.name }}
Description: {{ offer.description|default:"-" }}
Slug: {{ offer.slug|default:"-" }}
Status: {% if offer.is_active %} Active {% else %} Inactive {% endif %}
Validity & Priority
Valid From: {{ offer.start_date|default:"-" }}
Valid Until: {{ offer.end_date|default:"-" }}
Priority: {{ offer.priority }}
Created At: {{ offer.created_at }}
Updated At: {{ offer.updated_at }}

Offer Rules
{% if offer.offer_type == 'percentage' %} {% elif offer.offer_type == 'fixed_amount' %} {% elif offer.offer_type == 'buy_x_get_y' %} {% endif %}
Type: {{ offer.get_offer_type_display }}
Percentage: {{ offer.discount_percentage }}%
Max Discount: {{ offer.max_discount_amount|default:"No Limit" }}
Amount: {{ offer.discount_amount }}
Buy Quantity: {{ offer.buy_quantity }}
Get Quantity: {{ offer.get_quantity }}
Get Discount %: {{ offer.get_discount_percent }}%
Gift Product: {{ offer.gift_product|default:"-" }}
Min Purchase: {{ offer.minimum_purchase_amount|default:"-" }}
Max Purchase: {{ offer.maximum_purchase_amount|default:"-" }}
Min Quantity: {{ offer.minimum_quantity|default:"-" }}
Usage Limits & Settings
Max Uses (Total): {{ offer.usage_limit_total|default:"Unlimited" }}
Max Uses (User): {{ offer.usage_limit_per_user|default:"Unlimited" }}
Used Count: {{ offer.used_count }}
Auto Apply: {{ offer.auto_apply|yesno:"Yes,No" }}
Exclude Sale: {{ offer.exclude_sale_items|yesno:"Yes,No" }}
First Order Only: {{ offer.first_order_only|yesno:"Yes,No" }}
Apply to All: {{ offer.apply_to_all|yesno:"Yes,No" }}

Applicability
Brands:
{% if offer.brands %} {% for brand in offer.brands %} {{ brand }} {% endfor %} {% else %} All Brands (if Apply to All is checked) or None {% endif %}
Categories:
{% if offer.categories %} {% for category in offer.categories %} {{ category }} {% endfor %} {% else %} All Categories (if Apply to All is checked) or None {% endif %}
Products:
{% if offer.products %} {% for product in offer.products %} {{ product }} {% endfor %} {% else %} All Products (if Apply to All is checked) or None {% endif %}
Services:
{% if offer.services.all %} {% for service in offer.services.all %} {{ service.service_name }} {% endfor %} {% else %} All Services (if Apply to All is checked) or None {% endif %}
{% endblock %}