diff --git a/anatomy/templates/anatomy/exam_list.html b/anatomy/templates/anatomy/exam_list.html
index 7c61c002..6abb9f50 100644
--- a/anatomy/templates/anatomy/exam_list.html
+++ b/anatomy/templates/anatomy/exam_list.html
@@ -8,7 +8,7 @@
{% for exam in exams %}
{% if exam.active %}
- {{exam.name}} (mark) (scores)
+ {{exam.name}} (mark) (scores) [Results are {% if exam.publish_results %} not{% endif %}published]
{% endif %}
{% endfor %}
@@ -19,7 +19,7 @@
{% for exam in exams %}
{% if not exam.active %}
- {{exam.name}} (mark) (scores)
+ {{exam.name}} (mark) (scores) [Results are {% if exam.publish_results %} not{% endif %}published]
{% endif %}
{% endfor %}