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

Course Outline

Learning path for {{ course.title }}

{% if course_type == 'short' %} {% else %} {% endif %}

{{ course.title }}

{{ course_outline|length }} Sections {{ topics_count }} Topics

Learning Journey

Follow this structured path to master your English skills

{% if course_outline %}
{% for section_title, topics in course_outline.items() %}
{{ loop.index }}

{{ section_title }}

{{ topics|length }} topics in this section

{% for topic in topics %} {% endfor %}
{% endfor %}
{% else %}

No Outline Available

This course doesn't have an outline yet. Please check back later.

{% endif %}
{% endblock %}