reverification_processed.txt 1.63 KB
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>
% if status == "approved":
3 4
${_("We have successfully verified your identity for the {assessment} assessment in the {course_name} course."
).format(course_name=course_name, assessment=assessment)}
5

6 7 8 9 10 11
% elif is_attempt_allowed and verification_open:    # if attempts are allowed and verification is still open.
${_("We could not verify your identity for the {assessment} assessment in the {course_name} course. You have used {used_attempts} out of {allowed_attempts} attempts to verify your identity."
).format(course_name=course_name, assessment=assessment, used_attempts=used_attempts, allowed_attempts=allowed_attempts)}
%if due_date:
${_("You must verify your identity before the assessment closes on {due_date}.").format(due_date=due_date)}
%endif
12

13 14
${_("To try to verify your identity again, select the following link:")}
${reverify_link}
15

16 17 18 19
% elif not is_attempt_allowed or not verification_open:    # if attempts are not allowed or verification window is closed
${_("We could not verify your identity for the {assessment} assessment in the {course_name} course. You have used {used_attempts} out of {allowed_attempts} attempts to verify your identity, and verification is no longer possible."
).format(course_name=course_name, assessment=assessment, used_attempts=used_attempts, allowed_attempts=allowed_attempts)}
%endif
20

21 22
${_("To go to the courseware, select the following link:")}
${course_link}
23

24
${_("If you have any questions, you can contact student support at {support_link}.").format(support_link=support_link)}
25

26 27
${_("Thanks,")}
${_("The {platform_name} team").format(platform_name=platform_name)}