On Mon, Jun 30, 2008 at 8:12 AM, Bobby Roberts <[EMAIL PROTECTED]> wrote:
>
> ok i'm totally lost i guess...
>
> in my view i setup my session variables as such...
>
>            request.session['Street2']=request.POST.get('Street2','')
>            request.session['City']=request.POST.get('City','')
>            request.session['State']=request.POST.get('State','')
>            request.session['ZipCode']=request.POST.get('ZipCode','')
>
> and when i want to pass back to the template i am doing the following:
>
>            return render_to_response("step2.html", 'form': form},
> context_instance=RequestContext(request))
>
> now my question here is how do i pass those session variables back to
> the template.

If you have activated the request context processor, the request is
*automatically* passed to the template.  (That was the point of all
this, right?)

So to display the value of request.session['City'], for example, you'd
use this in your template:

  {{ request.session.City }}


Arien

--~--~---------~--~----~------------~-------~--~----~
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