Commit c272b6d8 by chrisndodge

Merge pull request #26 from edx/cdodge/click-through-link-for-download

remove the words edX
parents b070ed0d 268a9ce2
...@@ -447,6 +447,7 @@ def get_student_view(user_id, course_id, content_id, context): ...@@ -447,6 +447,7 @@ def get_student_view(user_id, course_id, content_id, context):
django_context = Context(context) django_context = Context(context)
total_time = humanized_time(context['default_time_limit_mins']) total_time = humanized_time(context['default_time_limit_mins'])
django_context.update({ django_context.update({
'platform_name': settings.PLATFORM_NAME,
'total_time': total_time, 'total_time': total_time,
'exam_id': exam_id, 'exam_id': exam_id,
'enter_exam_endpoint': reverse('edx_proctoring.proctored_exam.attempt.collection'), 'enter_exam_endpoint': reverse('edx_proctoring.proctored_exam.attempt.collection'),
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</a> </a>
<p> <p>
{% blocktrans %} {% blocktrans %}
You will need to <strong>download and install edX-approved software </strong>for the online proctoring of You will need to <strong>download and install {{platform_name}} approved software </strong>for the online proctoring of
your exam. After successful installation, you will be <strong>guided through setting up your your exam. After successful installation, you will be <strong>guided through setting up your
proctored session and begin the exam immediately </strong>afterwards.</p> proctored session and begin the exam immediately </strong>afterwards.</p>
{% endblocktrans %} {% endblocktrans %}
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<h1> {{exam_code}}</h1> <h1> {{exam_code}}</h1>
<p> <p>
{% blocktrans %} {% blocktrans %}
Please do not share this code. It can only be used once and it tied to your edX account. Please do not share this code. It can only be used once and it tied to your {{platform_name}} account.
{% endblocktrans %} {% endblocktrans %}
</p> </p>
</div> </div>
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
<span> {% trans "Note: Once you complete installation and set up, your timed exam will begin." %} </span> <span> {% trans "Note: Once you complete installation and set up, your timed exam will begin." %} </span>
<p> <p>
{% blocktrans %} {% blocktrans %}
Please be prepared to start the exam and follow all of the guidelines of an edX proctored exam. Please be prepared to start the exam and follow all of the guidelines of an {{platform_name}} proctored exam.
{% endblocktrans %} {% endblocktrans %}
</p> </p>
<p class="proctored-exam-option"> <p class="proctored-exam-option">
......
{% load i18n %} {% load i18n %}
<div class="footer-sequence"> <div class="footer-sequence">
<h4> {% trans "What if i need more time " %}? </h4> <h4> {% trans "What if i need more time " %}? </h4>
<p>{% trans "edX ocassionally grants more time for students with disabilities and difficult conditions. " %} <p>{% blocktrans %}
{% blocktrans %} {{platform_name}} ocassionally grants more time for students with disabilities and difficult conditions.
Please see <a href="#"> Please see <a href="#">
our frequently asked questions about timed exams and more policies. our frequently asked questions about timed exams and more policies.
</a> </a>
{% endblocktrans %} {% endblocktrans %}
</p> </p>
</div> </div>
\ No newline at end of file
...@@ -16,6 +16,7 @@ TRANSACTIONS_MANAGED = {} ...@@ -16,6 +16,7 @@ TRANSACTIONS_MANAGED = {}
USE_TZ = True USE_TZ = True
TIME_ZONE = {} TIME_ZONE = {}
SECRET_KEY='SHHHHHH' SECRET_KEY='SHHHHHH'
PLATFORM_NAME='Open edX'
DATABASES = { DATABASES = {
'default': { 'default': {
......
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