summaryrefslogtreecommitdiff
path: root/testapp/templates/exam
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/templates/exam')
-rw-r--r--testapp/templates/exam/showusers.html17
1 files changed, 15 insertions, 2 deletions
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 %}
+<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/showusers.css" type="text/css" />
+{% endblock css %}
+
{% block manage %}
-{% for name in user %}
-<a href="{{URL_ROOT}}/exam/manage/gradeuser/{{ name }}">{{ name }}</a><br>
+<center><table style="text-align:left;" class=table-class border=3>
+<th>Username
+<th>First Name
+<th>Last Name
+<th>Quiz Description
+{% for papers in question %}
+<tr><td><a href="{{URL_ROOT}}/exam/manage/gradeuser/{{ papers.user.username }}">{{ papers.user.username }}</a><br>
+ <td >{{ papers.user.first_name.title }}
+ <td>{{ papers.user.last_name.title }}
+ <td>{{ papers.quiz.description }}
{% endfor %}
+</table></center>
{% endblock %}