{% extends 'base.html' %} {% block title %}Course Outline | Try English{% endblock %} {% block content %}

Course Outline

Viewing outline for {{ course.title }}

{% if topics %} {% set current_section = None %} {% for topic in topics %} {% if topic.section_title != current_section %} {% if not loop.first %}
{% endif %}

{{ topic.section_title or "Week 1" }}

    {% set current_section = topic.section_title %} {% endif %}
  • {{ topic.title }}
  • {% if loop.last %}
{% endif %} {% endfor %} {% else %}

No Outline Available

This course doesn't have an outline yet. {% if is_teacher %} Add one now {% endif %}

{% endif %}
{% if is_teacher %}
Back to Courses {% if topics %} Edit Outline {% endif %}
{% else %}
Back to Course {% if course.enrolled %} Start Learning {% endif %}
{% endif %}
{% endblock %}