${_('Sysadmin Dashboard')}
%if modeflag.get('users'):
${_('User Management')}
%endif
%if modeflag.get('staffing'):
${_("Go to each individual course's Instructor dashboard to manage course enrollment.")}
${_('Manage course staff and instructors')}
%endif
%if modeflag.get('courses'):
${_('Administer Courses')}
%endif
%if msg:
${msg}
%endif
%if datatable:
${datatable['title']}
%for hname in datatable['header']:
${hname} |
%endfor
%for row in datatable['data']:
%for value in row:
${value} |
%endfor
%endfor
%endif
%if plots:
%for plot in plots:
${plot['title']}
${plot['info']}
%endfor
%endif