blob: 603af8a62f94c90c2905453c0962d24cf7d49eef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "manage.html" %}
{% block subtitle %}
List of Users
{% endblock %}
{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/showusers.css" type="text/css" />
{% endblock css %}
{% block manage %}
<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 %}
|