diff options
author | nishanth | 2010-02-05 17:21:00 +0530 |
---|---|---|
committer | nishanth | 2010-02-05 17:21:00 +0530 |
commit | f22bacc74ce5be78f8d17f218f4aa39369d54cdb (patch) | |
tree | 2c25ede2ee47b3d5276c90847b2c9b3a9b2f63d5 /taskapp | |
parent | 8be81df9f642cb1c0c321db81469a24b902f9eb4 (diff) | |
download | pytask-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.py | 5 |
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 |