{% extends "base.html" %} {% block content %}
course

{{title}}

Course Description

{{ description }}

Upcoming Batches

{% for batch in batches %}
Session every {{batch.weekdays}}
{{batch.timeslot}}
Starting from {{batch.start_date}}
mentors
{% for m in batch.mentors %}
{{m.name}}
{% endfor %}
{% endfor %}

Course Outline

{% for chapter in chapters %}

{{loop.index}} {{chapter.title}}

{{chapter.description}}
{% for lesson in chapter.lessons %}
{{lesson.title}}
{% endfor %}
{% endfor %}
{% endblock %}