From bed6d3bec534ec5cd207e1fa00580749aaa14112 Mon Sep 17 00:00:00 2001 From: Akshen Date: Wed, 10 Oct 2018 10:50:20 +0530 Subject: Add DWSIM Online Quiz - Moderator can add, edit questions and view leaderboard - Participant can take quiz specified for that day --- static/website/templates/leaderboard.html | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 static/website/templates/leaderboard.html (limited to 'static/website/templates/leaderboard.html') diff --git a/static/website/templates/leaderboard.html b/static/website/templates/leaderboard.html new file mode 100644 index 0000000..7b56ee8 --- /dev/null +++ b/static/website/templates/leaderboard.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} + +{% load static %} + {% block content %} +


+ +
+
+ + + + +   + + + + + {% for participant in leaderboard %} + + + + + + + + {% endfor %} +
Participant NameScore
+   {{ participant.0.user.get_full_name }} + +   {{ participant.1 }} +
+ +
+
+

+ {% endblock %} \ No newline at end of file -- cgit