{% extends "dashboard/base.html" %} {% load humanize %} {% block page_title %}Edit Upcoming Sale -- {{ sale.title }}{% endblock %} {% block header_actions %} Cancel {% endblock %} {% block dashboard_content %} {% if error %}
Error: {{ error }}
{% endif %}
{% csrf_token %}

Sale Settings

Pricing model is fixed and cannot be changed after booking.

Manage Products & Pricing

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