{% extends 'base_course.html' %} {% block top_content %} {% endblock %} {% block main_content %}

{# I18N: Shown after the student has submitted an assessment. #} {{ gettext('Thank you for taking the %(assessment_name)s. Your score for this assessment is %(score)s%%. If you wish, you may return to the assessment and take it again.' % {'assessment_name': assessment_name|lower, 'score': score}) }}


{% if 'assessment_confirmations' in course_info and is_last_assessment and overall_score != None and result %}

{{course_info.assessment_confirmations['result_text'][result] % overall_score}}

{% endif %}

{# I18N: Shown after the student has submitted an assessment. This button allows the student to navigate back to the main course page. #} {{ gettext('Back to Course page') }}

{% endblock %}