On Mon, Jun 30, 2008 at 5:36 PM, Bobby Roberts <[EMAIL PROTECTED]> wrote:

> ok assuming i use a HttpResponseRedirect, how would I pull the session
> variables into the template?

HttpResponseRedirect does not use a template. The response is a 302
code to the browser, not an html page, to tell the browser to issue
another request for the page you are redirecting to.

Let's say that you return HttpResponseRedirect('/step2/ '). The
browser receives the redirection request and calls the new url
http://mysite.com/step2/. That is ANOTHER request that is handled by
the view you chose for '^step2/' in your urls.py

Paolo

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to