${_("Instructor Dashboard")}
%if analytics_dashboard_message:
${analytics_dashboard_message}
%endif
## links which are tied to idash-sections below.
## the links are activated and handled in instructor_dashboard.coffee
## when the javascript loads, it clicks on the first section
% for section_data in sections:
## This is necessary so we don't scrape 'section_display_name' as a string.
<% dname = section_data['section_display_name'] %>
- ${_(dname)}
% 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