<%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 | Forum Admin | Enrollment | DataDump | Manage Groups ]

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

Pre-computed grades ${offline_grade_log} available: Use?

%endif

Gradebook

Grade summary


%if settings.MITX_FEATURES.get('REMOTE_GRADEBOOK_URL','') and instructor_access: <% rg = course.metadata.get('remote_gradebook',{}) %>

Export grades to remote gradebook

The assignments defined for this course should match the ones stored in the gradebook, for this to work properly!

  • Gradebook name: ${rg.get('name','None defined!')}





  • Assignment name:

%endif

Student-specific grade inspection and adjustment

edX email address or their username:

and, if you want to reset the number of attempts for a problem, the urlname of that problem

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

Select a problem and an action:

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


%endif %if admin_access:


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

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



%endif %if instructor_access or forum_admin_access:


%else:

User requires forum administrator privileges to perform administration tasks. See instructor.

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

Student Email:


%if settings.MITX_FEATURES.get('REMOTE_GRADEBOOK_URL','') and instructor_access: <% rg = course.metadata.get('remote_gradebook',{}) %>

Pull enrollment from remote gradebook

  • Gradebook name: ${rg.get('name','None defined!')}
  • Section:

%endif

Add students: enter emails, separated by new lines or commas;

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

Problem urlname:


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

Enter usernames or emails for students who should be beta-testers, one per line, or separated by commas. They will get to see course materials early, as configured via the days_early_for_beta option in the course policy.


%if course.is_cohorted: <%include file="/course_groups/cohort_management.html" /> %endif %endif %endif
##----------------------------------------------------------------------------- %if msg:

${msg}

%endif ##----------------------------------------------------------------------------- %if datatable and 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 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