diff --git a/longs/templates/longs/exam_scores_user.html b/longs/templates/longs/exam_scores_user.html
index 2cd20fcf..51792960 100644
--- a/longs/templates/longs/exam_scores_user.html
+++ b/longs/templates/longs/exam_scores_user.html
@@ -2,7 +2,9 @@
{% block content %}
- Question
1
+ Question
1
+ History:
+ Images:
Answers:
@@ -82,6 +84,12 @@
$(".question-display-block .answers").empty().append(data.answers.toString());
n = parseInt(question_number) + 1
$(".question-display-block .question-number").empty().append(n);
+ $("#history").empty().append(data.title);
+ $("#series").empty();
+ data.image_titles.forEach((element, index) => {
+ $("#series").append(`
${index}: ${element}`);
+
+ })
// show some message according to the response.
// For eg. A message box showing that the status has been changed
})