<%! from django.utils.translation import ugettext as _ %> <%page args="section_data"/>

${_("Data Download")}

${_("The following button displays a list of all students enrolled in this course, along with profile information such as email address and username. The data can also be downloaded as a CSV file.")}


${_("Displays the grading configuration for the course. The grading configuration is the breakdown of graded subsections of the course (such as exams and problem sets), and can be changed on the 'Grading' page (under 'Settings') in Studio.")}


${_("Download a CSV of anonymized student IDs by clicking this button.")}

%if settings.FEATURES.get('ENABLE_S3_GRADE_DOWNLOADS'):

${_("Grade Reports")}

%if settings.FEATURES.get('ALLOW_COURSE_STAFF_GRADE_DOWNLOADS') or section_data['access']['admin']:

${_("The following button will generate a CSV grade report for all currently enrolled students. Generated reports appear in a table below and can be downloaded.")}

${_("For large courses, generating this report may take several hours. Please be patient and do not click the button multiple times. Clicking the button multiple times will significantly slow the grade generation process.")}

${_("The report is generated in the background, meaning it is OK to navigate away from this page while your report is generating.")}


%endif

${_("Reports Available for Download")}

${_("A new CSV report is generated each time you click the Generate Grade Report button above. A link to each report remains available on this page, identified by the UTC date and time of generation. Reports are not deleted, so you will always be able to access previously generated reports from this page.")}

## Translators: a table of URL links to report files appears after this sentence.

${_("Note: To keep student data secure, you cannot save or email these links for direct access. Copies of links expire within 5 minutes.")}


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

${_("Pending Instructor Tasks")}

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


%endif