diff --git a/anatomy/templates/anatomy/exam_scores.html b/anatomy/templates/anatomy/exam_scores.html
index 5e1ff906..127beb40 100644
--- a/anatomy/templates/anatomy/exam_scores.html
+++ b/anatomy/templates/anatomy/exam_scores.html
@@ -1,69 +1,69 @@
{% extends 'anatomy/exams.html' %}
{% block content %}
-
-
{{ exam.name }}
+
+
{{ exam.name }}
- {% if unmarked %}
-
- The following questions need marking
- {% for exam_index in unmarked %}
-
{{ exam_index|add:1 }}
- {% endfor %}
-
-
- {% endif %}
-
-
-
-
Stats
- Candidates: {{cids|length}}
- Max score: {{max_score}}
- Mean: {{mean}}, Median {{median}}, Mode {{mode}}
-
-
{{plot|safe}}
-
-
-
-
- | Candidate ID |
- Score |
-
- {% for user, value in user_answers_marks.items %}
-
- | {{user}} |
- {{user_scores|get_item:user}} |
-
- {% endfor %}
-
-
-
-
Results as a table
-
-
-
- | Candidate |
- {% for cid in cids %}
- {{cid}} |
+ {% if unmarked %}
+
+ The following questions need marking
+ {% for exam_index in unmarked %}
+
{{ exam_index|add:1 }}
{% endfor %}
+
+ {% endif %}
+
+
+
+
Stats
+ Candidates: {{cids|length}}
+ Max score: {{max_score}}
+ Mean: {{mean}}, Median {{median}}, Mode {{mode}}
+
+
{{plot|safe}}
+
+
+
+
+ | Candidate ID |
+ Score |
-
- {% for question in questions %}
-
- | Question {{forloop.counter}} |
- {% for ans, score in by_question|get_item:question %}
- {{ans}} |
+ {% for user, value in user_answers_marks.items %}
+
+ | {{user}} |
+ {{user_scores|get_item:user}} |
+
{% endfor %}
-
- {% endfor %}
-
- | Score: |
- {% for score in user_scores_list %}
- {{score}} |
- {% endfor %}
-
-
+
+
+
+
Results as a table
+
+
+
+ | Candidate |
+ {% for cid in cids %}
+ {{cid}} |
+ {% endfor %}
-
-{% endblock %}
\ No newline at end of file
+
+
+ {% for question in questions %}
+
+ | Question {{forloop.counter}} |
+ {% for ans, score in by_question|get_item:question %}
+ {{ans}} |
+ {% endfor %}
+
+ {% endfor %}
+
+ | Score: |
+ {% for score in user_scores_list %}
+ {{score}} |
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/generic/templates/generic/questionnote_form.html b/generic/templates/generic/questionnote_form.html
index 274a40cc..9dfb6f8f 100755
--- a/generic/templates/generic/questionnote_form.html
+++ b/generic/templates/generic/questionnote_form.html
@@ -4,7 +4,7 @@
{% block content %}
Add Feedback
- Adding feedback for {{question_type}}/{{question.id}} ]
+ Adding feedback for {{question_type}}/{{question.id}}
{% if user.is_superuser %}
{{question}}
diff --git a/rapids/templates/rapids/exam_scores.html b/rapids/templates/rapids/exam_scores.html
index a37a588d..db6967ea 100644
--- a/rapids/templates/rapids/exam_scores.html
+++ b/rapids/templates/rapids/exam_scores.html
@@ -1,77 +1,77 @@
{% extends 'rapids/exams.html' %}
{% block content %}
-
{{plot|safe}}
-
-
{{ exam.name }}
+
{{plot|safe}}
+
+
{{ exam.name }}
- {% if unmarked %}
-
- The following questions need marking
- {% for exam_index in unmarked %}
-
{{ exam_index|add:1 }}
- {% endfor %}
-
-
- {% endif %}
-
-
-
-
Stats
- Candidates: {{cids|length}}
- Max score: {{max_score}}
- Mean: {{mean}}, Median {{median}}, Mode {{mode}}
-
-
-
-
-
- | Candidate ID |
- Score |
- Normalised Score |
-
- {% for user, value in user_answers_marks.items %}
-
- | {{user}} |
- {{user_scores|get_item:user}} |
- {{user_scores_normalised|get_item:user}} |
-
- {% endfor %}
-
-
-
-
Answers as a table
-
-
-
- | Candidate |
- {% for cid in cids %}
- {{cid}} |
+ {% if unmarked %}
+
+ The following questions need marking
+ {% for exam_index in unmarked %}
+
{{ exam_index|add:1 }}
{% endfor %}
+
+ {% endif %}
+
+
+
+
Stats
+ Candidates: {{cids|length}}
+ Max score: {{max_score}}
+ Mean: {{mean}}, Median {{median}}, Mode {{mode}}
+
+
+
+
+
+ | Candidate ID |
+ Score |
+ Normalised Score |
-
- {% for question in questions %}
-
- | Question {{forloop.counter}}
- {% if question.normal %}
- [N]
- {% else %}
- [A]
- {% endif %}
- |
- {% for ans, score in by_question|get_item:question %}
- {{ans}} |
+ {% for user, value in user_answers_marks.items %}
+
+ | {{user}} |
+ {{user_scores|get_item:user}} |
+ {{user_scores_normalised|get_item:user}} |
+
{% endfor %}
-
- {% endfor %}
-
- | Score: |
- {% for score in user_scores_list %}
- {{score}} |
- {% endfor %}
-
-
+
+
+
+
Answers as a table
+
+
+
+ | Candidate |
+ {% for cid in cids %}
+ {{cid}} |
+ {% endfor %}
-
-{% endblock %}
\ No newline at end of file
+
+
+ {% for question in questions %}
+
+ | Question {{forloop.counter}} |
+ {% if question.normal %}
+ [N]
+ {% else %}
+ [A]
+ {% endif %}
+
+ {% for ans, score in by_question|get_item:question %}
+ {{ans}} |
+ {% endfor %}
+
+ {% endfor %}
+
+ | Score: |
+ {% for score in user_scores_list %}
+ {{score}} |
+ {% endfor %}
+
+
+
+
+{% endblock %}