{% extends "dashboard/base.html" %} {% load humanize %} {% block page_title %}Create New Flash Sale{% endblock %} {% block header_actions %} Back to Sales {% endblock %} {% block dashboard_content %} {% if error %}
Error: {{ error }}
{% endif %}
{% csrf_token %}

1. Sale Details & Pricing Model

This title will be featured prominently on your public sale landing page.

2. Select & Price Products for This Sale

{% if products %}

Check the products you wish to include, set their flash sale price, discount percentage (optional), and allocated sale inventory stock.

{% for product in products %}
{% if product.primary_image %} {% else %}
No img
{% endif %}
Base Price: GHS {{ product.base_price|floatformat:2 }}
{% endfor %}
{% else %}

No Active Products Found

You need at least one active product in your catalog before creating a sale.

Add Product First
{% endif %}
{% if products %}
Cancel
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}