{% extends "enrolled-course.html" %} {% block title %}Course List{% endblock %} {% block main %}

{{ category.name }}

Course List

{% if courses|length == 0 %}
No Course is Available
{% endif %} {% for course in courses %} {% with isAlt=forloop.counter|divisibleby:"2" %} {{ course.name }}
{% endwith %} {% endfor %} {% if courses|length != 0 %}
{% endif %}
All Categories
Back
{% endblock %}