summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/showusers.html
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/templates/exam/showusers.html')
-rw-r--r--testapp/templates/exam/showusers.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/testapp/templates/exam/showusers.html b/testapp/templates/exam/showusers.html
new file mode 100644
index 0000000..ad9534f
--- /dev/null
+++ b/testapp/templates/exam/showusers.html
@@ -0,0 +1,12 @@
+{% extends "manage.html" %}
+
+
+{% block subtitle %}
+List of Users
+{% endblock %}
+
+{% block manage %}
+{% for name in user %}
+<a href="{{URL_ROOT}}/exam/grade_user/{{ name }}">{{ name }}</a><br>
+{% endfor %}
+{% endblock %}