I am writing a custom tag in Django that should output a value stored in a user session, but I cannot find a way to access the session object from within a custom tag function. Is there any way to do this, without manually assigning the session object to a context variable?
|
|
You should be able to add the request context processor in your settings.py file:
This will do the same thing as the current answer, without having to add a custom file. |
||||||||
|
|
|
You can do this with custom context processors (see http://docs.djangoproject.com/en/dev/ref/templates/api/) In this case, you'd create a new file called context_processors.py at the same level as your settings.py file, containing:
Then, in your settings.py file, add:
You'll now be able to refer to context['session'] in your custom tag. Note that this will only work for templates rendered with a RequestContext assigned, as in the following code:
|
||
|
|
|
|
I found this useful: http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser You can use middleware to grab the user info and store it with a local thread, and then use it with your tag definition. |
||
|
|
|
|
No offense intended Sebastian as that seems like it was a useful hack at one point, but oddly enough on December 24 in a blog entry about accessing User data in the Admin, James Bennett, Django's release manager, had this to say about using the threadlocal hack:
Not saying that you should ignore Sebastian, but it might be worthwhile pursuing other avenues rather than using threadlocal which is not considered a best practice. |
||
|
|
|
|
Using render_to decorator from django-annoying seems to be the best option (as seen in another question on stackoverflow) |
||
|
|
