Files
enlight-lms/community/lms/widgets/CourseOutline.html
2021-07-02 15:43:21 +05:30

11 lines
305 B
HTML

<div class="">
<h3>
Course Outline
</h3>
<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>