summaryrefslogtreecommitdiff
path: root/taskapp
diff options
context:
space:
mode:
authornishanth2010-02-05 17:21:00 +0530
committernishanth2010-02-05 17:21:00 +0530
commitf22bacc74ce5be78f8d17f218f4aa39369d54cdb (patch)
tree2c25ede2ee47b3d5276c90847b2c9b3a9b2f63d5 /taskapp
parent8be81df9f642cb1c0c321db81469a24b902f9eb4 (diff)
downloadpytask-f22bacc74ce5be78f8d17f218f4aa39369d54cdb.tar.gz
pytask-f22bacc74ce5be78f8d17f218f4aa39369d54cdb.tar.bz2
pytask-f22bacc74ce5be78f8d17f218f4aa39369d54cdb.zip
made urls.py look better and added an empty method edit_task to taskViews .
Diffstat (limited to 'taskapp')
-rw-r--r--taskapp/views/task.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/taskapp/views/task.py b/taskapp/views/task.py
index cdb7d45..8a91ed9 100644
--- a/taskapp/views/task.py
+++ b/taskapp/views/task.py
@@ -255,4 +255,9 @@ def assign_task(request, tid):
else:
return show_msg('You are not authorised to perform this action', task_url, 'view the task')
+def edit_task(request, tid):
+ """ see what are the attributes that can be edited depending on the current status
+ and then give the user fields accordingly.
+ """
+ return None