Files
enlight-lms/community/lms/widgets/CourseOutline.html
2021-07-06 17:58:36 +05:30

13 lines
386 B
HTML

{% if course.get_chapters() | length %}
<div class="">
<div class="course-home-headings">
Course Outline
</div>
<div class="coure-outline">
{% for chapter in course.get_chapters() %}
{{ widgets.ChapterTeaser(index=loop.index, chapter=chapter, course=course, batch=batch, show_link=show_link, show_progress=show_progress)}}
{% endfor %}
</div>
</div>
{% endif %}