From 0143710e78ae01bae78a3b760fc8410bc86a3b2b Mon Sep 17 00:00:00 2001 From: prathamesh Date: Fri, 11 Jul 2014 14:14:19 +0530 Subject: Moved templates and static inside the app. --- testapp/exam/templates/manage.html | 88 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 testapp/exam/templates/manage.html (limited to 'testapp/exam/templates/manage.html') diff --git a/testapp/exam/templates/manage.html b/testapp/exam/templates/manage.html new file mode 100644 index 0000000..1db8a78 --- /dev/null +++ b/testapp/exam/templates/manage.html @@ -0,0 +1,88 @@ + + + + {% block title %} + {% endblock %} + + + {% block meta %} + + + + {% endblock %} + + + + {% block css %} + {% endblock %} + + {% block script %} + {% endblock %} + + + +
+
+ +
+
+
+
+ +
+
+ {% block manage %} +

List of quizzes! Click on the given links to have a look at answer papers for a quiz.

+
+ + + + + + {% for paper, answer_papers, users_passed, users_failed in users_per_paper %} + + + + + + + {% endfor %} +
QuizTaken ByNo. of users PassedNo. of users Failed
+ {{ paper.quiz.description }} + + {{ answer_papers|length }} user(s) + + {{ users_passed }} + + {{ users_failed }} +
+
+
+

Moderator's Dashboard!

+
Click on the button given below to add a new quiz.
+ +
+{% endblock %} +
+
+
+ +
+ + + -- cgit