Inhalt

    {% for section in course.sections %}
  1. {{ section.name }} {% assign section_completed = true %} {% for activity in section.activities %} {% unless activity.completed? %} {% assign section_completed = false %} {% endunless %} {% endfor %} {% if section_completed %} {% endif %}
    {% comment %}
      {% for activity in section.activities %}
    1. {% if activity.locked? %} {% include "course_activity_locked" %} {% elsif course.enrolled? == false %} {% include "course_activity_locked" %} {% else %} {% include "course_activity_unlocked", activity_classes: "np-course-outline-content-activity-link-completed" %} {% endif %}
    2. {% endfor %}
    {% endcomment %}
  2. {% endfor %}