summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornishanth2010-03-02 15:21:45 +0530
committernishanth2010-03-02 15:21:45 +0530
commit780965f3a708f3f65deab4bfb9b6afeae99d13b3 (patch)
treea3d27031a07976294bc56a5f8df7dcfe11798bdb
parentf636310f42f4d714b9eee73b87643817567943b5 (diff)
downloadpytask-780965f3a708f3f65deab4bfb9b6afeae99d13b3.tar.gz
pytask-780965f3a708f3f65deab4bfb9b6afeae99d13b3.tar.bz2
pytask-780965f3a708f3f65deab4bfb9b6afeae99d13b3.zip
create task page now shows a proper side bar.
-rw-r--r--taskapp/views/task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskapp/views/task.py b/taskapp/views/task.py
index 071f69b..637fc62 100644
--- a/taskapp/views/task.py
+++ b/taskapp/views/task.py
@@ -152,7 +152,7 @@ def create_task(request):
return render_to_response('task/create.html',{'user':user, 'form':form})
else:
form = TaskCreateForm()
- return render_to_response('task/create.html',{'form':form})
+ return render_to_response('task/create.html',{'user':user, 'form':form})
else:
return show_msg(user, 'You are not authorised to create a task.')
else: