{% extends 'base.html' %} {% block title %}Offer Details: {{ offer.code }}{% endblock %} {% block content %}
| Code: | {{ offer.code }} |
|---|---|
| Name: | {{ offer.name }} |
| Description: | {{ offer.description|default:"-" }} |
| Slug: | {{ offer.slug|default:"-" }} |
| Status: | {% if offer.is_active %} Active {% else %} Inactive {% endif %} |
| 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 }} |
| 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:"-" }} |
| 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" }} |