On 24 Sep 2007, at 4:36 pm, Bert Heymans wrote:

>
> Hi,
>
> I'm kind of stuck, the documentation says that request.session should
> be used like a dictionary but if I use a for-loop in a template an try
> to loop over a session like this "for key, value in session" just like
> I would access items in an ordinary dictionary, I always get a
> KeyError and can't figure out why.
>
> The request.session is linked to 'session' for the context of the
> request and I can get values out of request.session with dot notation
> in the template.
>
> I guess I'm doing something wrong and I'm going to keep looking, but
> does anyone have a hint for an easy way of debugging the values in a
> session?
>

I find it quite useful to put {{request.session.items}} in my base  
template when debugging session type stuff. This will then give you a  
print out of the items in the session as a dictionary.

You need to use Requestcontext on your views and have  
'django.core.context_processors.request' in your  
TEMPLATE_CONTEXT_PROCESSORS

Hope that helps,

Dave


-- 
David Reynolds
[EMAIL PROTECTED]



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