gettext('Please enter a student email address or username.')
);
}
if(!problemToReset){
returnthis.$request_err_grade.text(
gettext('Please enter a problem location.')
);
}
if(!score){
returnthis.$request_err_grade.text(
gettext('Please enter a score.')
);
}
sendData={
unique_student_identifier:uniqStudentIdentifier,
problem_to_reset:problemToReset,
score:score
};
successMessage=gettext("Started task to override the score for problem '<%- problem_id %>' and student '<%- student_id %>'. Click the 'Show Task Status' button to see the status of the task.");// eslint-disable-line max-len
fullSuccessMessage=_.template(successMessage)({
student_id:uniqStudentIdentifier,
problem_id:problemToReset
});
defaultErrorMessage=gettext("Error starting a task to override score for problem '<%- problem_id %>' for student '<%- student_id %>'. Make sure that the the score and the problem and student identifiers are complete and correct.");// eslint-disable-line max-len
<labelfor="delete-state-single">${_("For the specified problem, permanently and completely delete the learner's answers and scores from the database.")}</label>
<br>
...
...
@@ -94,7 +111,7 @@
<divclass="request-response-error"></div>
<labelfor="entrance-exam-student-select-grade">
${_("Learner's {platform_name} email address or username *").format(platform_name=settings.PLATFORM_NAME)}
${_("Learner's {platform_name} email address or username").format(platform_name=settings.PLATFORM_NAME)}
</label>
<br>
<inputtype="text"name="entrance-exam-student-select-grade"placeholder="${_('Learner email address or username')}">