{% for lesson in course.active_lessons %}
    {{lesson.title}}
    {% for activity in lesson.active_activies %} {% if pagename == 'index' %} {% else %} {% endif %}
    {% if "reading" == activity.activity_type %} {% elif "video" == activity.activity_type %} {%else%} {% endif %} {{activity.title}}
    {% endfor %}
    {% endfor %}