On 1 Jun 2009, at 20:39 , Baxter wrote: > On Jun 1, 1:25 pm, Gustavo Henrique <gustavo...@gmail.com> wrote: >> Using direct_to_template the request var is passed as param. >> So, you can access in template: {{ request.session.myvar }} > > Thanks, but what I'm really after is a template tag I can drop in > anywhere, whether the main template is generic or not. Actually, if it > were only generic templates, this would be done already. >
Django doesn't have "generic templates" (only generic views), and if you don't provide the request to the template engine, it'll have a pretty hard time getting the session without using magic. Magic is bad. If you want the session in your template context, either use generic views, use RequestContext (with the Request context_processor enabled) in your views or create your own context. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---