summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/showusers.html
blob: 01ecc377d1d49d2d8efdb58eecbb51fd4df660fd (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.question_paper.quiz.description }}
{% endfor %}
</table></center>
{% endblock %}