{% extends 'base.html' %}
{% block content %}
{% load static %}
{% for item in object_list %}
{% if item.label == 'HO' %}
-
{% if item.discount_price %}
Kshs {{ item.discount_price }}
Kshs {{ item.price }}
{% else %}
Kshs {{ item.price }}
{% endif %}
{{ item.get_label_display }}
{% endif %}
{% endfor %}
{% endblock content %}