diff options
author | hardythe1 | 2012-02-16 11:18:55 +0530 |
---|---|---|
committer | hardythe1 | 2012-02-16 11:18:55 +0530 |
commit | 8c548960349a01393141845d0ae1e728e9130b7c (patch) | |
tree | f5b6b194163809df79f886e3e657b9eed8d819a1 /testapp/templates/exam/showusers.html | |
parent | 7c65d02d8a1f2ea72eabf3f13f85b8b444b1505e (diff) | |
download | online_test-8c548960349a01393141845d0ae1e728e9130b7c.tar.gz online_test-8c548960349a01393141845d0ae1e728e9130b7c.tar.bz2 online_test-8c548960349a01393141845d0ae1e728e9130b7c.zip |
The new html files
Diffstat (limited to 'testapp/templates/exam/showusers.html')
-rw-r--r-- | testapp/templates/exam/showusers.html | 12 |
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 %} |