diff options
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 |