Commit e6cb0693 by Chris Dodge

Update error page content

parent 98c6bf37
{% load i18n %} {% load i18n %}
<div class="sequence proctored-exam error"> <div class="failure sequence proctored-exam" data-exam-id="{{exam_id}}">
<div class="gated-sequence"> <h3>
{% trans "Your exam has been marked as failed due to an error." %} {% blocktrans %}
</div> Your proctoring session is in error
{% endblocktrans %}
</h3>
<h4>
{% blocktrans %}
Your Proctoring Session review: <b class="failure"> Failed </b>
{% endblocktrans %}
</h4>
<p>
{% blocktrans %}
It appears that your proctoring session has been shut down while you were taking this
exam. This invalidates your proctored exam and you will not be eligible for course
credit.
{% endblocktrans %}
</p>
<hr>
<p>
{% blocktrans %}
Please see <a href="{{progress_page_url}}">your progress in this course </a>
for your general course credit worthiness.
{% endblocktrans %}
</p>
</div>
<div class="footer-sequence border-b-0 padding-b-0">
<span> {% trans "Can I contest this review?" %} </span>
<p class="proctored-exam-option">
{% blocktrans %}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
Aenean massa.
{% endblocktrans %}
</p>
<a href="#" class="contest-review">Contest this review</a>
<hr class="clearfix">
<span> {% trans "Is there anything I can do to make up/replace this session?" %} </span>
<p class="proctored-exam-option">
{% blocktrans %}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
Aenean massa.
{% endblocktrans %}
</p>
<hr class="clearfix">
<span> {% trans "See Also" %} </span>
<p>
{% blocktrans %}
<a class="footer-link" href="#">
Frequently asked questions about proctoring and earning college credit.
</a>
{% endblocktrans %}
</p>
</div> </div>
...@@ -26,13 +26,4 @@ ...@@ -26,13 +26,4 @@
{% endblocktrans %} {% endblocktrans %}
</p> </p>
</div> </div>
<div class="footer-sequence border-b-0 padding-b-0"> {% include 'proctoring/seq_proctored_exam_footer.html' %}
<span> {% trans "See Also" %} </span>
<p>
{% blocktrans %}
<a class="footer-link" href="#">
Frequently asked questions about proctoring and earning college credit.
</a>
{% endblocktrans %}
</p>
</div>
...@@ -26,13 +26,4 @@ ...@@ -26,13 +26,4 @@
{% endblocktrans %} {% endblocktrans %}
</p> </p>
</div> </div>
<div class="footer-sequence border-b-0 padding-b-0"> {% include 'proctoring/seq_proctored_exam_footer.html' %}
<span> {% trans "See Also" %} </span>
<p>
{% blocktrans %}
<a class="footer-link" href="#">
Frequently asked questions about proctoring and earning college credit.
</a>
{% endblocktrans %}
</p>
</div>
...@@ -92,7 +92,7 @@ class ProctoredExamApiTests(LoggedInTestCase): ...@@ -92,7 +92,7 @@ class ProctoredExamApiTests(LoggedInTestCase):
self.start_an_exam_msg = 'Would you like to take %s as a proctored exam?' self.start_an_exam_msg = 'Would you like to take %s as a proctored exam?'
self.timed_exam_msg = '%s is a Timed Exam' self.timed_exam_msg = '%s is a Timed Exam'
self.exam_time_expired_msg = 'You did not complete the exam in the allotted time' self.exam_time_expired_msg = 'You did not complete the exam in the allotted time'
self.exam_time_error_msg = 'Your exam has been marked as failed due to an error.' self.exam_time_error_msg = 'Your proctoring session is in error'
self.chose_proctored_exam_msg = 'You have chosen to take %s as a proctored exam' self.chose_proctored_exam_msg = 'You have chosen to take %s as a proctored exam'
self.proctored_exam_completed_msg = 'This is the end of your proctored exam' self.proctored_exam_completed_msg = 'This is the end of your proctored exam'
self.proctored_exam_submitted_msg = 'You have submitted this proctored exam for review' self.proctored_exam_submitted_msg = 'You have submitted this proctored exam for review'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment