From 573dcc6149f3ccf8ffaa2df2dba3461b3b795c48 Mon Sep 17 00:00:00 2001
From: jayparikh111
Date: Thu, 2 Feb 2012 12:45:09 +0530
Subject: Updated Views.py, monitor.html and login.html with new changes
---
testapp/templates/exam/monitor.html | 43 +++++++++++++++++++++++++++++++------
1 file changed, 37 insertions(+), 6 deletions(-)
(limited to 'testapp/templates/exam/monitor.html')
diff --git a/testapp/templates/exam/monitor.html b/testapp/templates/exam/monitor.html
index fb6cb58..0b59f76 100644
--- a/testapp/templates/exam/monitor.html
+++ b/testapp/templates/exam/monitor.html
@@ -1,22 +1,35 @@
{% extends "base.html" %}
+
+
{% block title %} Quiz results {% endblock title %}
{% block meta %} {% endblock meta %}
+
+
{% block content %}
+
+
+
+
+
-
No quizzes available.
+
No quizzes available.
{% endif %}
{# ############################################################### #}
{# This is rendered when we are just viewing exam/monitor #}
{% if quizzes %}
-
Available quizzes
+
Available quizzes
+
+
+
{% for quiz in quizzes %}
@@ -28,11 +41,24 @@
{# ############################################################### #}
{# This is rendered when we are just viewing exam/monitor/quiz_num #}
{% if quiz %}
- {{ quiz.description }} results
+ {{ quiz.description }} results
+
+
+
+
{% if papers %}
{#
Quiz: {{ quiz_name }}
#}
Number of papers: {{ papers|length }}
-
+
Name |
@@ -61,7 +87,12 @@
No answer papers so far.
{% endif %} {# if papers #}
{% endif %}
-
Admin
+
+
+
+
{% endblock content %}
--
cgit