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.  I've tried building a data dictionary like this:

{'Street2': request.session['Street2'], 'City':
request.session['City'], ...}

but that does nothing.  Please help

BR


On Jun 29, 11:50 am, Arien <[EMAIL PROTECTED]> wrote:
> On Sun, Jun 29, 2008 at 9:08 AM, Bobby Roberts <[EMAIL PROTECTED]> wrote:
>
> > So I have to explicitly pass the session variables to the template to
> > use them?  That kind of defeats the purpose of session variables
> > doesn't it?  If they are in session we should be able to access them
> > easier than passing them from view to template throughout our
> > application.
>
> Variables that happen to hold session data are no different from other
> variables.
>
> If you want to have access to a variable in a template, you'll have to
> make the variable available to the template somehow.  You can do this
> by passing the variable to the template yourself, or (in some cases)
> you can have a context processor do that for you.
>
> This is one of those cases: you can have request.session added
> implicitly if you do what Daniel Roseman wrote and active the
> django.core.context_processors.request context processor, making sure
> to always use a RequestContext when rendering the template.
>
> 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