summaryrefslogtreecommitdiff
path: root/templates/task/remove_user.html
diff options
context:
space:
mode:
authornishanth2010-02-25 16:17:56 +0530
committernishanth2010-02-25 16:17:56 +0530
commit40adcbfc4a6eb40feb37a35db88ea2ed8a7845a7 (patch)
tree6229e90f1661361d2ce947ba58bb7802abbd0bea /templates/task/remove_user.html
parenta3cda26f529a0994c7086e76d718c4aecc8ecc0b (diff)
downloadpytask-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.html11
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 %}