Outline

    {% for section in course.sections %}
  1. {{ section.name }}
      {% for activity in section.activities %}
    1. {% comment %} If the activity is locked show a locked icon and then a text title {% endcomment %} {% if activity.locked? %} {% include "course_activity_locked" %} {% comment %} If the user is not enrolled in the course show a text title {% endcomment %} {% elsif course.enrolled? == false %} {% include "course_activity_locked" %} {% comment %} Otherwise include a link {% endcomment %} {% else %} {% include "course_activity_unlocked", activity_classes: "np-course-outline-content-activity-link-completed" %} {% endif %}
    2. {% endfor %}
  2. {% endfor %}