{% extends 'base.html' %} {% block title %}Discount Details: {{ discount.code }}{% endblock %} {% block content %}
Discount Details: {{ discount.code }}
Edit Back to List
Basic Information
Code: {{ discount.code }}
Description: {{ discount.description|default:"-" }}
Status: {% if discount.is_active %} Active {% else %} Inactive {% endif %}
Single Use: {{ discount.single_use|yesno:"Yes,No" }}
Validity
Valid From: {{ discount.valid_from|default:"-" }}
Valid Until: {{ discount.valid_until|default:"-" }}
Created At: {{ discount.created_at }}
Updated At: {{ discount.updated_at }}

Discount Rules
{% if discount.discount_type == 'percentage' %} {% else %} {% endif %}
Type: {{ discount.get_discount_type_display }}
Percentage: {{ discount.discount_percentage }}%
Max Discount: {{ discount.max_discount_amount|default:"No Limit" }}
Amount: {{ discount.discount_amount }}
Min Order Amount: {{ discount.minimum_amount }}
Usage Limits
Max Uses (Total): {{ discount.maximum_uses_total|default:"Unlimited" }}
Max Uses (Per User): {{ discount.maximum_uses_per_user|default:"Unlimited" }}

Applicability
Brands:
{% if discount.apply_to_all_brands %} {% for brand in discount.apply_to_all_brands %} {{ brand }} {% endfor %} {% else %} All Brands {% endif %}
Products:
{% if discount.apply_to_all_products %} {% for product in discount.apply_to_all_products %} {{ product }} {% endfor %} {% else %} All Products {% endif %}
Services:
{% if discount.apply_to_all_services %} {% for service in discount.apply_to_all_services %} {{ service }} {% endfor %} {% else %} All Services {% endif %}
{% endblock %}