diff --git a/anatomy/templates/anatomy/exam_overview.html b/anatomy/templates/anatomy/exam_overview.html index 640ad253..6ac9f368 100644 --- a/anatomy/templates/anatomy/exam_overview.html +++ b/anatomy/templates/anatomy/exam_overview.html @@ -22,11 +22,13 @@ Open access: {{ exam.open_access }}
- Exam active: [When checked the exam will be available to take in the test system] + Exam active: + [When checked the exam will be available to take in the test system]
{% if exam.exam_mode %}
- Publish results: [When checked the exam results will be available to users on this site]

diff --git a/physics/templates/physics/exam_overview.html b/physics/templates/physics/exam_overview.html index 8a877d4a..d4c99b53 100644 --- a/physics/templates/physics/exam_overview.html +++ b/physics/templates/physics/exam_overview.html @@ -2,113 +2,66 @@ {% block content %} - {% load thumbnail %} -
- {% if can_edit %} - Edit - Delete - Clone - {% endif %} - {% if request.user.is_superuser %} - Admin Edit - {% endif %} -

Exam: {{ exam.name }}

+{% load thumbnail %} +
+ {% if can_edit %} + Edit + Delete + Clone + {% endif %} + {% if request.user.is_superuser %} + Admin + Edit + {% endif %} +

Exam: {{ exam.name }}

- {% include 'exam_notes.html' %} + {% include 'exam_notes.html' %} -

This exam has {{question_number}} questions.

- Open access: {{ exam.open_access }}
- -
- Exam active: [When checked the exam will be available to take in the test system] -
-
- Publish results: [When checked the exam results will be available on this site] -
- This exam will be available to take here (when active). - - {% autoescape off %} -
    - {% for question in questions.all %} - -
  1. - {{ question.stem }} -
      -
    1. - {{ question.a }}: {{ question.a_answer }} -
    2. -
    3. - {{ question.b }}: {{ question.b_answer }} -
    4. -
    5. - {{ question.c }}: {{ question.c_answer }} -
    6. -
    7. - {{ question.d }}: {{ question.d_answer }} -
    8. -
    9. - {{ question.e }}: {{ question.e_answer }} -
    10. -
    - Category: {{ question.category }}, View Edit - -
  2. - {% endfor %} -
- {% endautoescape %} +

This exam has {{question_number}} questions.

+ Open access: {{ exam.open_access }}
+
+ Exam active: [When checked the exam will be available to take in the test system]
- -{% endblock %} +
  • + {{ question.stem }} +
      +
    1. + {{ question.a }}: {{ question.a_answer }} +
    2. +
    3. + {{ question.b }}: {{ question.b_answer }} +
    4. +
    5. + {{ question.c }}: {{ question.c_answer }} +
    6. +
    7. + {{ question.d }}: {{ question.d_answer }} +
    8. +
    9. + {{ question.e }}: {{ question.e_answer }} +
    10. +
    + Category: {{ question.category }}, View Edit + +
  • + {% endfor %} + + {% endautoescape %} + +
    +{% endblock %} \ No newline at end of file