This commit is contained in:
Ross
2021-02-17 22:18:56 +00:00
parent 326c155c24
commit 2c66e5c757
6 changed files with 39 additions and 13 deletions
+15 -9
View File
@@ -9,10 +9,11 @@
This exam has {{question_number}} questions. Time limit: {{exam.time_limit}} seconds.
<div class="parent-help" title="Click to enable / disable the exam">
Exam active: <input type="checkbox" id="exam-active-switch" {% if exam.active %}checked{% endif %}> <span class="help-text">[When checked the exam will be available to take in the test system]</span>
Exam active: <input type="checkbox" id="exam-active-switch" {% if exam.active %}checked{% endif %}> <span
class="help-text">[When checked the exam will be available to take in the test system]</span>
</div>
<div class="parent-help" title="Click to enable / disable the exam results">
Publish results: <input type="checkbox" id="exam-publish-results-switch" {% if exam.publish_results %}checked{% endif %}> <span class="help-text">[When checked the exam results will be available on this site]</span>
Publish results: <input type="checkbox" id="exam-publish-results-switch" {% if exam.publish_results %}checked{% endif %}> <span class="help-text">[When checked the exam results will be available on this site]</span>
</div>
<p><a href="{% url 'longs:mark_overview' pk=exam.pk %}"><button>Mark exam</button></a></p>
@@ -24,12 +25,17 @@
<br />
{% for series in question.series.all %}
<div class="series-block">
Series {{forloop.counter }}:<br />
{{series.get_block}}
Series {{forloop.counter0 }}:<br />
{{series.get_block}}
</div>
{% endfor %}
<div>
Author(s): {{question.get_authors}}
Author(s): {{question.get_authors}}
</div>
<div>
<a href="{% url 'longs:exam_question_detail' exam.id forloop.counter0 %}"
title="View the question">View</a> <a href="{% url 'longs:long_update' question.id %}"
title="Edit the question">Edit</a>
</div>
</li>
{% endfor %}
@@ -58,7 +64,7 @@
console.log(data);
if (data.status == "success") {
toastr.info('Exam state changed.')
toastr.info('Exam state changed.')
}
// show some message according to the response.
// For eg. A message box showing that the status has been changed
@@ -82,7 +88,7 @@
console.log(data);
if (data.status == "success") {
toastr.info('Publish results state changed.')
toastr.info('Publish results state changed.')
}
// show some message according to the response.
// For eg. A message box showing that the status has been changed
@@ -106,7 +112,7 @@
console.log(data);
if (data.status == "success") {
toastr.info('Question access state changed.')
toastr.info('Question access state changed.')
}
})
.always(function () {
@@ -128,7 +134,7 @@
console.log(data);
if (data.status == "success") {
toastr.info('Question access state changed.')
toastr.info('Question access state changed.')
}
})
.always(function () {
+1 -1
View File
@@ -9,7 +9,7 @@
{% if previous > -1 %}
<a href="{% url 'longs:exam_question_detail' exam.id previous %}">Previous question</a>
{% endif %}
This question is part of exam: {{exam.name}} [{{pos}}/{{exam_length}}]
This question is part of exam: <a href="{% url 'longs:exam_overview' exam.id %}">{{exam.name}}</a> [{{pos}}/{{exam_length}}]
{% if next %}
<a href="{% url 'longs:exam_question_detail' exam.id next %}">Next question</a>
{% endif %}