%! from django.utils.translation import ugettext as _ %>
<%page args="section_data"/>
${_("Enrollment Information")}
## Translators: 'track' refers to the enrollment type ('honor', 'verified', or 'audit')
${_("Number of enrollees (instructors, staff members, and students) by track")}
<% modes = section_data['enrollment_count'] %>
${_("Verified")} | ${modes['verified']} |
${_("Audit")} | ${modes['audit']} |
${_("Honor")} | ${modes['honor']} |
${_("Total")} | ${modes['total']} |
${_("Basic Course Information")}
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
${_("Pending Instructor Tasks")}
${_("The status for any active tasks appears in a table below.")}
%endif
%if len(section_data['course_errors']):
%for error in section_data['course_errors']:
${ error[0] }
${ error[1] }
%endfor
%endif