<%page args="section_data" expression_filter="h"/> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML, Text %> %if settings.FEATURES.get('DISPLAY_ANALYTICS_ENROLLMENTS') or section_data.get('enrollment_message'):

${_("Enrollment Information")}

%if settings.FEATURES.get('DISPLAY_ANALYTICS_ENROLLMENTS'): ## Translators: 'track' refers to the enrollment type ('honor', 'verified', or 'audit') <% modes = section_data['enrollment_count'] %>
${_("Number of enrollees (admins, staff, and students) by track")}
${_("Verified")}${modes['verified']}
${_("Audit")}${modes['audit']}
${_("Honor")}${modes['honor']}
${_("Professional")}${modes['professional'] + modes['no-id-professional']}
${_("Total")} ${modes['total']}
%elif section_data.get('enrollment_message'):

${section_data['enrollment_message']}

%endif

%endif

${_("Basic Course Information")}

%if settings.FEATURES.get('ENABLE_SYSADMIN_DASHBOARD', ''):

## Translators: git is a version-control system; see http://git-scm.com/about ${Text(_("View detailed Git import logs for this course {link_start}by clicking here{link_end}.")).format( link_start=HTML('').format(section_data['detailed_gitlogs_url']), link_end=HTML('') )}

%endif
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):

${_("Pending Tasks")}

${_("The status for any active tasks appears in a table below.")}


%endif %if len(section_data['course_errors']):

${_("Course Warnings")}:

%for error in section_data['course_errors']:
${ error[0] }
${ error[1] }
%endfor


%endif