summaryrefslogtreecommitdiff
path: root/testapp/templates/exam
diff options
context:
space:
mode:
authorhardythe12012-02-16 11:18:55 +0530
committerhardythe12012-02-16 11:18:55 +0530
commit8c548960349a01393141845d0ae1e728e9130b7c (patch)
treef5b6b194163809df79f886e3e657b9eed8d819a1 /testapp/templates/exam
parent7c65d02d8a1f2ea72eabf3f13f85b8b444b1505e (diff)
downloadonline_test-8c548960349a01393141845d0ae1e728e9130b7c.tar.gz
online_test-8c548960349a01393141845d0ae1e728e9130b7c.tar.bz2
online_test-8c548960349a01393141845d0ae1e728e9130b7c.zip
The new html files
Diffstat (limited to 'testapp/templates/exam')
-rw-r--r--testapp/templates/exam/add_question.html9
-rw-r--r--testapp/templates/exam/add_quiz.html10
-rw-r--r--testapp/templates/exam/showusers.html12
3 files changed, 31 insertions, 0 deletions
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 %}
+<p>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 %}
+<p>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 %}
+<a href="{{URL_ROOT}}/exam/grade_user/{{ name }}">{{ name }}</a><br>
+{% endfor %}
+{% endblock %}