diff --git a/generic/templates/generic/exam_overview_headers.html b/generic/templates/generic/exam_overview_headers.html index c608da06..1bfcabf1 100644 --- a/generic/templates/generic/exam_overview_headers.html +++ b/generic/templates/generic/exam_overview_headers.html @@ -109,6 +109,7 @@ Author(s): {% for author in exam.author.all %}
Extra + Occasionally the order of questions can get out of sync. If you are exeriancing issues with the order of questions you can reset the order here.

+ {% if exam.exam_mode %} +

+ {% endif %}
    {% for question in questions.all %} diff --git a/rapids/templates/rapids/question_display_block.html b/rapids/templates/rapids/question_display_block.html index 1ed9fded..d7f35d98 100755 --- a/rapids/templates/rapids/question_display_block.html +++ b/rapids/templates/rapids/question_display_block.html @@ -32,6 +32,10 @@ Exam(s): {% for exam in question.exams.all %} {{ exam }}, {% endfor %} + + {% comment %} " + ) + html = html + "
    Exams to remove from question:
    " + for exam in question.exams.all(): + html = html + (f"
    " + ) + html = html + "" + + return HttpResponse(mark_safe(html)) + + + raise PermissionDenied() \ No newline at end of file