<%page args="section_data" expression_filter="h"/> <%namespace name='static' file='/static_content.html'/> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML, Text %>
${_("Select a problem to generate a CSV \ file that lists all student answers to the problem. You also select a section or chapter to include \ results of all problems in that section or chapter.")}
${static.renderReact( component="ProblemBrowser", id="react-problem-report", props={ "courseId": course.id, "excludeBlockTypes": ['html', 'video', 'discussion'], "problemResponsesEndpoint": section_data['get_problem_responses_url'], "taskStatusEndpoint": "/instructor_task_status", "reportDownloadEndpoint": section_data['list_report_downloads_url'], "showBtnUi": "false" } )}
<% max_entries = settings.FEATURES.get('MAX_PROBLEM_RESPONSES_COUNT') %> %if max_entries is not None:

${_("NOTE")}: ${_("The generated report is limited to {max_entries} responses. If you expect more than {max_entries} " "responses, try generating the report on a chapter-by-chapter, or problem-by-problem basis, or contact " "your site administrator to increase the limit.").format(max_entries=max_entries)}

%endif