diff --git a/lms/templates/courseware/submission_history.html b/lms/templates/courseware/submission_history.html index b89fb420f9..a2a72946be 100644 --- a/lms/templates/courseware/submission_history.html +++ b/lms/templates/courseware/submission_history.html @@ -1,5 +1,6 @@ +<%page expression_filter="h"/> <% import json %> -

${username | h} > ${course_id | h} > ${location | h}

+

${username} > ${course_id} > ${location}

% for i, (entry, score) in enumerate(zip(history_entries, scores)):
@@ -7,7 +8,7 @@ #${len(history_entries) - i}: ${entry.updated} (${TIME_ZONE} time)
Score: ${score.grade} / ${score.max_grade}
-${json.dumps(entry.state, indent=2, sort_keys=True) | h}
+${json.dumps(entry.state, indent=2, sort_keys=True)}
 
% endfor