diff --git a/longs/templates/longs/long_display_block.html b/longs/templates/longs/long_display_block.html
index cc1fd798..36040e9b 100755
--- a/longs/templates/longs/long_display_block.html
+++ b/longs/templates/longs/long_display_block.html
@@ -40,8 +40,11 @@
Mark Scheme:
{{ question.mark_scheme | safe}}
- Exam(s): {{question.get_exams}}
-
+
+ Exam(s): {% for exam in question.exams.all %}
+
{{ exam.name }},
+ {% endfor %}
+
Notes:
diff --git a/rapids/templates/rapids/question_display_block.html b/rapids/templates/rapids/question_display_block.html
index 1ded5b97..23b15edf 100755
--- a/rapids/templates/rapids/question_display_block.html
+++ b/rapids/templates/rapids/question_display_block.html
@@ -25,7 +25,7 @@
{% endfor %}
- Exams: {% for exam in question.exams.all %}
+ Exam(s): {% for exam in question.exams.all %}
{{ exam.name }},
{% endfor %}