diff options
author | Nishanth Amuluru | 2011-01-09 11:52:30 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-09 11:52:30 +0530 |
commit | 7c51c7847463a06c32b3f1447426cae5c669e915 (patch) | |
tree | 3d67f631e63c639e862ee634a8f49c280d96a341 | |
parent | 7ddfc685985456ad39eb2221e532447733909b55 (diff) | |
download | pytask-7c51c7847463a06c32b3f1447426cae5c669e915.tar.gz pytask-7c51c7847463a06c32b3f1447426cae5c669e915.tar.bz2 pytask-7c51c7847463a06c32b3f1447426cae5c669e915.zip |
Added the template
-rw-r--r-- | pytask/templates/task/select_user.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pytask/templates/task/select_user.html b/pytask/templates/task/select_user.html new file mode 100644 index 0000000..8c4e3d2 --- /dev/null +++ b/pytask/templates/task/select_user.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} +{% block content %} + <a href="/task/claim/tid={{task.id}}">click here</a> to return to the claims page.<br /><br /> + Select a user to assign this task.<br /> + <form action="" method="POST"> + {{form.as_table}} + <input type="submit" value="Assign Task"> + </form> +{% endblock %} |