{% extends "core/base.html" %} {% block title %}Promo Codes - SwiftPOS{% endblock %} {% block topbar_title %}Promo Codes{% endblock %} {% block content %}
| Code | Description | Discount | Min Order | Uses | Expires | Status | Actions |
|---|---|---|---|---|---|---|---|
{{ p.code }}
|
{{ p.description|default:"—" }} | {% if p.discount_type == 'percentage' %} {{ p.discount_value }}% off {% else %} {{ currency_symbol }}{{ p.discount_value }} off {% endif %} | {% if p.minimum_order_amount > 0 %} {{ currency_symbol }}{{ p.minimum_order_amount|floatformat:0 }} {% else %} None {% endif %} | {{ p.current_uses }}{% if p.max_uses > 0 %} / {{ p.max_uses }}{% else %} / ∞{% endif %} | {% if p.expires_at %} {{ p.expires_at|date:"d M Y" }} {% if p.is_expired %}Expired{% endif %} {% else %} Never {% endif %} | {% if p.is_valid %} Active {% elif p.is_expired %} Expired {% elif p.is_exhausted %} Exhausted {% else %} Inactive {% endif %} | |
| No promo codes yet. Create one. | |||||||