# HG changeset patch # User Nishanth Amuluru # Date 1294771762 -19800 # Node ID 026f2059a97a5c28ac036b45b97f5517323bcb37 # Parent 979f2f44050a403769d63b08b74908f43d1b86fa fixed a few broken links to templates diff -r 979f2f44050a -r 026f2059a97a pytask/taskapp/views.py --- a/pytask/taskapp/views.py Tue Jan 11 22:43:56 2011 +0530 +++ b/pytask/taskapp/views.py Wed Jan 12 00:19:22 2011 +0530 @@ -100,7 +100,7 @@ user = request.user if not user.is_authenticated(): - return render_to_response("/task/view.html", {"task": task}) + return render_to_response("task/view.html", {"task": task}) profile = user.get_profile() @@ -317,7 +317,7 @@ } if not user.is_authenticated(): - return render_to_response("/task/view_work.html", context) + return render_to_response("task/view_work.html", context) profile = user.get_profile()