{% extends 'base.html' %} {% block content %} {% load static %}
    {% for item in object_list %} {% if item.label == 'HO' %}
  • {{ item.title }}

    {% if item.discount_price %} Kshs {{ item.discount_price }} Kshs {{ item.price }} {% else %} Kshs {{ item.price }} {% endif %}
    {{ item.get_label_display }}
  • {% endif %} {% endfor %}
{% if is_paginated %}
{% endif %}
{% endblock content %}