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

Edit Course Outline

Modify the outline for {{ course.title }}

{{ form.csrf_token }}
{% for section_title, topics in sections.items() %}

Section {{ loop.index }}

{% for topic in topics %}
{% endfor %}
{% endfor %} {% if not sections %}

Section 1

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}