← Alle Kurse
{{ course.title }}
{% if beschreibung_html %}
{{ beschreibung_html }}
{% endif %}
{% if course.category %}
{{ course.category.name }}
{% endif %} {% if course.estimated_duration_minutes %}
{{ course.estimated_duration_minutes }} Min.
{% endif %}
{{ chapters|length }} Kapitel
{% if chapters %} {% for chapter in chapters %}
{{ forloop.counter }}. {{ chapter.title }}
{% if chapter.beschreibung_html %}
{{ chapter.beschreibung_html }}
{% endif %} {% if chapter.lessons.all %}
{% for lesson in chapter.lessons.all %}
{{ forloop.counter }}
{{ lesson.title }}
{% if lesson.estimated_duration_minutes %}
{{ lesson.estimated_duration_minutes }} Min.
{% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% else %}
Kursinhalte werden gerade erstellt.
{% endif %}