{% extends "base.html" %} {% load static %} {% block title %}Live Sales -- {{ PLATFORM_NAME }}{% endblock %} {% block content %}

Live & Upcoming Sales

Browse flash sales from businesses across Ghana

{% for sale in sales %} {% if sale.is_ended %}
{% with first_item=sale.items.first %} {% if first_item and first_item.product.primary_image %} {{ sale.title }} {% else %}
{{ sale.business.name|first }}
{% endif %} {% endwith %} Ended
{% if sale.business.logo %} {% endif %} {{ sale.business.name }}

{{ sale.title }}

Ended {{ sale.end_at|date:"M d, Y H:i" }}

{{ sale.items.count }} product{{ sale.items.count|pluralize }}

{% else %}
{% with first_item=sale.items.first %} {% if first_item and first_item.product.primary_image %} {{ sale.title }} {% else %}
{{ sale.business.name|first }}
{% endif %} {% endwith %} {{ sale.get_status_display }}
{% if sale.business.logo %} {% endif %} {{ sale.business.name }}

{{ sale.title }}

{% if sale.is_live %}Ends {{ sale.end_at|date:"M d, Y H:i" }} {% else %}Starts {{ sale.start_at|date:"M d, Y H:i" }}{% endif %}

{{ sale.items.count }} product{{ sale.items.count|pluralize }}

{% endif %} {% empty %}

No sales found

Check back soon or book your own sale.

Book Your Sale
{% endfor %}
{% endblock %}