- simplified the portal page for course - added mentods to LMS Course and Community Member to reduce custom code in portal pages - included lessons in the ChapterTeaser
16 lines
405 B
HTML
16 lines
405 B
HTML
<div class="chapter-teaser">
|
|
<div class="teaser-body">
|
|
<h3 class="chapter-title">{{ chapter.title }}</h3>
|
|
<div class="chapter-description">
|
|
{{ chapter.description or "" }}
|
|
</div>
|
|
<div class="chapter-lessons">
|
|
{% for lesson in chapter.get_lessons() %}
|
|
<div class="lesson-teaser">
|
|
{{lesson.title}}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|