diff --git a/sbas/templates/sbas/exam_finish.html b/sbas/templates/sbas/exam_finish.html
index 29c22e3b..13706401 100644
--- a/sbas/templates/sbas/exam_finish.html
+++ b/sbas/templates/sbas/exam_finish.html
@@ -6,6 +6,7 @@ CID: {{cid}}
Exam: {{exam.name}}
+{{answer_count}} out of {exam_count} questions answered.
{% for question, answer in question_answer_tuples %}
- {{forloop.counter}}: {{answer.answer}}
diff --git a/sbas/views.py b/sbas/views.py
index edb05d79..7d60ad63 100644
--- a/sbas/views.py
+++ b/sbas/views.py
@@ -263,7 +263,9 @@ def exam_finish(request, pk, cid):
"sbas/exam_finish.html",
{
"exam": exam,
- "question_answer_tuples": question_answer_tuples
+ "question_answer_tuples": question_answer_tuples,
+ "answer_count": answers.length,
+ "exam_length": exam.length,
},
)