{% extends "base.html" %} {% load static %} {% load humanize %} {% block title %}{{ sale.title }} -- {{ PLATFORM_NAME }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if sale.is_ended %}
This sale has ended.
{% endif %}
{% if sale.business.logo %} {% else %}
{{ sale.business.name|first }}
{% endif %} {{ sale.business.name }}

{{ sale.title }}

{{ sale.get_status_display }}
{% if not sale.is_ended %}
--
Days
--
Hours
--
Mins
--
Secs

{% if sale.is_upcoming %}Sale starts in{% else %}Sale ends in{% endif %}

{% endif %}
{% for item in items %}
{% if item.product.primary_image %}{{ item.product.name }} {% else %}
No image
{% endif %} {% if item.discount_percent %}-{{ item.discount_percent|floatformat:0 }}%{% endif %}

{{ item.product.name }}

GHS {{ item.price|floatformat:2 }}{% if item.discount_percent %}GHS {{ item.original_price|floatformat:2 }}{% endif %}
{% if not item.is_sold_out %}

{{ item.stock_remaining }} left of {{ item.stock_total }}

{% else %}

Sold Out

{% endif %}
{% if sale.is_live and not item.is_sold_out %}
{% elif sale.is_upcoming %}
{% else %}
{% endif %}
{% empty %}

No products yet

The seller has not added products to this sale yet.

{% endfor %}

Your Cart

Your cart is empty

{% if sale.is_live %} {% endif %} {% endblock %} {% block extra_js %} {% endblock %}