diff options
author | nishanth | 2010-02-25 16:17:56 +0530 |
---|---|---|
committer | nishanth | 2010-02-25 16:17:56 +0530 |
commit | 40adcbfc4a6eb40feb37a35db88ea2ed8a7845a7 (patch) | |
tree | 6229e90f1661361d2ce947ba58bb7802abbd0bea /templates/task/remove_user.html | |
parent | a3cda26f529a0994c7086e76d718c4aecc8ecc0b (diff) | |
download | pytask-40adcbfc4a6eb40feb37a35db88ea2ed8a7845a7.tar.gz pytask-40adcbfc4a6eb40feb37a35db88ea2ed8a7845a7.tar.bz2 pytask-40adcbfc4a6eb40feb37a35db88ea2ed8a7845a7.zip |
added capability to remove an assigned user.
Diffstat (limited to 'templates/task/remove_user.html')
-rw-r--r-- | templates/task/remove_user.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/task/remove_user.html b/templates/task/remove_user.html new file mode 100644 index 0000000..5ea2b19 --- /dev/null +++ b/templates/task/remove_user.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block title %} + Remove users for {{task.title}} +{% endblock %} +{% block content %} + <a href="/task/view/tid={{task.id}}">Click here</a> to return to {{task.title}} + <form action="" method="post"> + {{form.as_p}} + <input value="Submit" type="submit"> + </form> +{% endblock %} |