Outline
{% for section in course.sections %}
-
{{ section.name }}
{% for activity in section.activities %}
-
{% 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 %}
{% endfor %}
{% endfor %}