From d05322b7ccc5eebc8d3a5d6cfc2de5d923c4fd32 Mon Sep 17 00:00:00 2001 From: Sylvia Pearce Date: Wed, 9 Aug 2017 19:27:04 -0400 Subject: [PATCH] Update UI text for proctored exam start page --- .../proctored_exam/ready_to_start.html | 37 ++++++++++++------- edx_proctoring/tests/test_student_view.py | 2 +- 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/edx_proctoring/templates/proctored_exam/ready_to_start.html b/edx_proctoring/templates/proctored_exam/ready_to_start.html index 2c07e8b034c..c3c12738f7a 100644 --- a/edx_proctoring/templates/proctored_exam/ready_to_start.html +++ b/edx_proctoring/templates/proctored_exam/ready_to_start.html @@ -3,23 +3,32 @@

{% blocktrans %} - Follow these instructions + Important {% endblocktrans %}

{% blocktrans %} - • When you start your exam you will have {{ total_time }} to complete it.
- • You cannot stop the timer once you start.
- • If time expires before you finish your exam, your completed answers will be - submitted for review.
- • If you have not taken a proctored exam before using {{ platform_name }} please read - the exam rules and guidelines first. Reading these will ensure you don't accidentally violate - any of the proctored exam rules. {% endblocktrans %} - - {% blocktrans %} - Read the {{ platform_name }} Online Proctoring Rules for Learners - {% endblocktrans %} -
+ • You have {{ total_time }} to complete this exam.
+ • You cannot stop the timer after you start the exam.
+ • If time expires before you finish the exam, your completed answers will be submitted. + {% endblocktrans %}
+

+

+ {% blocktrans %} + Proctored Exam Rules + {% endblocktrans %} +

+

+ {% blocktrans %} + You must adhere to the following rules while you complete this exam. + If you violate these rules, you will receive a score of 0 on the exam, and you will not be eligible for academic course credit. +
+ {% endblocktrans %} + + {% blocktrans %} + {{ platform_name }} Rules for Online Proctored Exams + {% endblocktrans %} +

{% if exam_review_policy %}

@@ -29,7 +38,7 @@

{% blocktrans %} - In addition to the general exam rules above, the following additions or exceptions apply to this exam:

+ The following additional rules apply to this exam. These rules take precedence over the Rules for Online Proctored Exams.

{{ exam_review_policy }}
{% endblocktrans %} diff --git a/edx_proctoring/tests/test_student_view.py b/edx_proctoring/tests/test_student_view.py index c4ca5bca120..434e718fd8f 100644 --- a/edx_proctoring/tests/test_student_view.py +++ b/edx_proctoring/tests/test_student_view.py @@ -61,7 +61,7 @@ def setUp(self): self.proctored_exam_submitted_msg = 'You have submitted this proctored exam for review' self.practice_exam_submitted_msg = 'You have submitted this practice proctored exam' self.take_exam_without_proctoring_msg = 'Take this exam without proctoring' - self.ready_to_start_msg = 'Follow these instructions' + self.ready_to_start_msg = 'Important' self.footer_msg = 'About Proctored Exams' self.timed_footer_msg = 'Can I request additional time to complete my exam?'