%! from django.utils.translation import ugettext as _ %>
<%page args="section_data"/>
${_("Enrollment Information")}
${_("Total number of enrollees (instructors, staff members, and students)")}
${ section_data['enrollment_count'] }
${_("Basic Course Information")}
%if settings.MITX_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