taskapp/views/task.py
changeset 36 0f10deac0a9b
parent 34 22f302094806
child 55 ca2486e29178
equal deleted inserted replaced
35:da5fe6708528 36:0f10deac0a9b
   253         else:
   253         else:
   254             return show_msg('The task status is %s. how can you assign it now'%task.status, task_url, 'view the task')
   254             return show_msg('The task status is %s. how can you assign it now'%task.status, task_url, 'view the task')
   255     else:
   255     else:
   256         return show_msg('You are not authorised to perform this action', task_url, 'view the task')
   256         return show_msg('You are not authorised to perform this action', task_url, 'view the task')
   257         
   257         
   258     
   258 def edit_task(request, tid):
       
   259     """ see what are the attributes that can be edited depending on the current status
       
   260     and then give the user fields accordingly.
       
   261     """
       
   262     
       
   263     return None