{{ 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 %}
-
{% 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 %}
{% endfor %}
{% endcomment %}
{% endfor %}