diff --git a/anatomy/templates/anatomy/exam_scores_user.html b/anatomy/templates/anatomy/exam_scores_user.html index b15d6ec8..d216e6c1 100644 --- a/anatomy/templates/anatomy/exam_scores_user.html +++ b/anatomy/templates/anatomy/exam_scores_user.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% block content %} -
+
HIDE/SHOW
Question No question loaded
@@ -12,24 +12,44 @@
Answers:
-
+ +
{% include 'user_score_header.html' %} -
    - {% for ans, score, correct_answer in answers_and_marks %} -
  • Question {{forloop.counter}} - Correct answer: {% if exam.publish_results %}{{correct_answer}}{% endif %} -
    - - - {% if exam.publish_results or view_all_results%} - Marks: {{score}} - {% endif %} - - View -
  • - {% endfor %} -
+ +
+
+
    + {% for ans, score, correct_answer in answers_and_marks %} +
  • +
    +
    + {{ forloop.counter }} +
    +
    +
    Question {{ forloop.counter }}
    +
    + Correct answer: {% if exam.publish_results %}{{ correct_answer }}{% else %}—{% endif %} +
    +
    +
    {{ ans }}
    +
    + {% if exam.publish_results or view_all_results %} +
    Marks: {{ score }}
    + {% endif %} +
    +
    +
    + + {% if request.user.is_staff %} + + {% endif %} +
    +
  • + {% endfor %} +
+
+
+ {% include 'user_scores_footer.html' %}
{% endblock %}