{% t.header
, key: current_school.course_vocabulary %}
Outline
Plan
Outline
Outline
Outline
Outline
{% for section in course.sections %}
-
{{ section.name }}
{% for activity in section.activities %}
-
{% if activity.completed? %}
{% if activity.locked? %}
{% include "course_activity_locked" %}
{% else %}
{% include "course_activity_unlocked"
, class: "np-course-outline-content-activity-link-completed" %}
{% endif %}
{% else %}
{% if activity.locked? %}
{% include "course_activity_locked" %}
{% else %}
{% include "course_activity_unlocked"
, class: "np-course-outline-content-activity-link" %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}