{% extends "core/base.html" %} {% block title %}Promo Codes - SwiftPOS{% endblock %} {% block topbar_title %}Promo Codes{% endblock %} {% block content %}
Promo Codes
Create and manage discount codes for your POS checkout
New Code
{% for p in promos %} {% empty %} {% endfor %}
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 %}
{% csrf_token %}
{% csrf_token %}
No promo codes yet. Create one.
{% endblock %}