[google-appengine] Re: Why this is happening?

2009-03-13 Thread arnie
I have used your suggested code as given below def signin(request): return HttpResponseRedirect(overview(request)) def overview(request): return render_to_response('step1.html') but it is still not working any idea, why? Thanks --~--~-~--~~~---~--~~ You

[google-appengine] Re: Why this is happening?

2009-03-09 Thread Michael O'Brien
Your signin view should probably redirect to the overview rather than just writing the template. So you could use something like: def overview(request): return return_to_response('overview.html') def signin(request): return HttpResponseRedirect(reverse(overview)) cheers Michael On Mar