From 0e6e72fb37f1a586728c997cd5e9c5fadf794823 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 19 Mar 2012 14:35:56 +0530 Subject: Changes in the Gradeuser Page --- testapp/exam/views.py | 3 ++- testapp/static/exam/css/showusers.css | 5 +++++ testapp/templates/exam/showusers.html | 17 +++++++++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 testapp/static/exam/css/showusers.css diff --git a/testapp/exam/views.py b/testapp/exam/views.py index d0e3ddc..0504bde 100644 --- a/testapp/exam/views.py +++ b/testapp/exam/views.py @@ -493,7 +493,8 @@ def show_all_users(request): if not user.is_authenticated() or user.groups.filter(name='moderator').count() == 0: raise Http404('You are not allowed to view this page !') user = User.objects.filter(username__contains="") - context = { 'user':user } + questionpaper = QuestionPaper.objects.all() + context = { 'question': questionpaper } print context return my_render_to_response('exam/showusers.html',context,context_instance=RequestContext(request)) diff --git a/testapp/static/exam/css/showusers.css b/testapp/static/exam/css/showusers.css new file mode 100644 index 0000000..66a3746 --- /dev/null +++ b/testapp/static/exam/css/showusers.css @@ -0,0 +1,5 @@ +.table-class +{ + text-align:left; + width:60%; +} diff --git a/testapp/templates/exam/showusers.html b/testapp/templates/exam/showusers.html index 441b921..603af8a 100644 --- a/testapp/templates/exam/showusers.html +++ b/testapp/templates/exam/showusers.html @@ -5,9 +5,22 @@ List of Users {% endblock %} +{% block css %} + +{% endblock css %} + {% block manage %} -{% for name in user %} -{{ name }}
+
+
Username +First Name +Last Name +Quiz Description +{% for papers in question %} +
{{ papers.user.username }}
+
{{ papers.user.first_name.title }} + {{ papers.user.last_name.title }} + {{ papers.quiz.description }} {% endfor %} +
{% endblock %} -- cgit