{% extends 'base.html' %} {% load course_tags %} {% load static %} {% block title %}Search{% endblock %} {% block content %}

Search Results

{% if course|length < 1 %}

Course Not Found

{% else %}
{% for i in course %}
... Discount {{i.discount}} %
{% endfor %}
{% endif %} {% for cat in category %}
{% for i in course %} {% if i.category.id == cat.id %}
... Discount {{i.discount}} %
{% else %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}