<%inherit file="/main.html" /> <%! from django.core.urlresolvers import reverse %> <%namespace name='static' file='/static_content.html'/> <%block name="headextra"> <%static:css group='course'/> ## NOTE that instructor is set as the active page so that the instructor button lights up, even though this is the instructor_2 page. <%include file="/courseware/course_navigation.html" args="active_page='instructor'" />
##

Instructor Dashboard

## links which are tied to idash-sections below. ## the links are acativated and handled in instructor_dashboard.coffee ## when the javascript loads, it clicks on the first section

% for section_data in sections: ${ section_data['section_display_name'] } % endfor

## each section corresponds to a section_data sub-dictionary provided by the view ## to keep this short, sections can be pulled out into their own files % for section_data in sections:
<%include file="${ section_data['section_key'] }.html" args="section_data=section_data" />
% endfor