<%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

[ Grades | %if settings.MITX_FEATURES.get('ENABLE_PSYCHOMETRICS'): Psychometrics | %endif Admin ]

${djangopid}
##----------------------------------------------------------------------------- %if modeflag.get('Grades'):

Gradebook

Grade summary

%endif ##----------------------------------------------------------------------------- %if modeflag.get('Psychometrics'):

Select a problem and an action:

%endif ##----------------------------------------------------------------------------- %if modeflag.get('Admin'): %if instructor_access:


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

%endif %endif

##----------------------------------------------------------------------------- %if modeflag.get('Psychometrics') is None:


${datatable['title']}

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

%endif ##----------------------------------------------------------------------------- %if modeflag.get('Psychometrics'): %for plot in plots:

${plot['title']}


${plot['info']}




%endfor %endif ##----------------------------------------------------------------------------- ## always show msg %if msg:

${msg}

%endif ##----------------------------------------------------------------------------- %if modeflag.get('Admin'): % if course_errors is not UNDEFINED:

Course errors

%if not course_errors: None %else:
    % for (summary, err) in course_errors:
  • ${summary | h} % if err:
    • ${err | h}
    % else:

     

    % endif
  • % endfor
%endif
% endif %endif