taskapp/views/task.py
changeset 177 4a7206176345
parent 176 13ceb76fd0a3
child 179 8d1fdb148c27
--- a/taskapp/views/task.py	Tue Mar 02 15:03:48 2010 +0530
+++ b/taskapp/views/task.py	Tue Mar 02 15:21:45 2010 +0530
@@ -152,7 +152,7 @@
                     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: