<%inherit file="/main.html" /> <%! from django.core.urlresolvers import reverse %> <%namespace name='static' file='/static_content.html'/> <%block name="headextra"> <%static:css group='course'/> <%include file="/courseware/course_navigation.html" args="active_page='instructor'" />

Instructor Dashboard

Gradebook

Grade summary

%if instructor_access:



%endif %if settings.MITX_FEATURES['ENABLE_MANUAL_GIT_RELOAD'] and admin_access:

%endif




${datatable['title']}

%for hname in datatable['header']: %endfor %for row in datatable['data']: %for value in row: %endfor %endfor
${hname}
${value}

%if msg:

${msg}

%endif % if course_errors is not UNDEFINED:

Course errors

    % for (summary, err) in course_errors:
  • ${summary | h}
    • ${err | h}
  • % endfor
% endif