← Alle Kurse
{{ course.title }}
{% if course.description %}
{{ course.description }}
{% 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.description %}
{{ chapter.description }}
{% 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 %}