From 8c548960349a01393141845d0ae1e728e9130b7c Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 16 Feb 2012 11:18:55 +0530 Subject: The new html files --- testapp/templates/exam/add_question.html | 9 +++++++++ testapp/templates/exam/add_quiz.html | 10 ++++++++++ testapp/templates/exam/showusers.html | 12 ++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 testapp/templates/exam/add_question.html create mode 100644 testapp/templates/exam/add_quiz.html create mode 100644 testapp/templates/exam/showusers.html (limited to 'testapp/templates/exam') diff --git a/testapp/templates/exam/add_question.html b/testapp/templates/exam/add_question.html new file mode 100644 index 0000000..fb5d38b --- /dev/null +++ b/testapp/templates/exam/add_question.html @@ -0,0 +1,9 @@ +{% extends "manage.html" %} + +{% block subtitle %} +Add Question +{% endblock %} + +{% block manage %} +

Add Question +{% endblock %} diff --git a/testapp/templates/exam/add_quiz.html b/testapp/templates/exam/add_quiz.html new file mode 100644 index 0000000..d568b30 --- /dev/null +++ b/testapp/templates/exam/add_quiz.html @@ -0,0 +1,10 @@ +{% extends "manage.html" %} + + +{% block subtitle %} +Add Quiz +{% endblock %} + +{% block manage %} +

Add Quiz +{% endblock %} diff --git a/testapp/templates/exam/showusers.html b/testapp/templates/exam/showusers.html new file mode 100644 index 0000000..ad9534f --- /dev/null +++ b/testapp/templates/exam/showusers.html @@ -0,0 +1,12 @@ +{% extends "manage.html" %} + + +{% block subtitle %} +List of Users +{% endblock %} + +{% block manage %} +{% for name in user %} +{{ name }}
+{% endfor %} +{% endblock %} -- cgit