Re: Calling User data from within templates

2007-09-03 Thread Alex Koshelev
Yes. You have to use RequestContext. If you don't use it django will not execute context processors and user variable never be passed into context On 4 сент, 00:41, Robert <[EMAIL PROTECTED]> wrote: > I'm not sure that requestContext was what i needed... I need simply to > be able to get user dat

Re: Calling User data from within templates

2007-09-03 Thread Robert
I'm not sure that requestContext was what i needed... I need simply to be able to get user data from inside my base template... the django tutorial says that you should by default, be able to do so, but I'm finding this to not be the case. Do you have any other ideas as to why it's not working for

Re: Calling User data from within templates

2007-09-03 Thread eXt
On 3 Wrz, 21:50, Robert <[EMAIL PROTECTED]> wrote: > Shouldn't that automatically be "Turned on"? You're right here., it's turned on by default. > How can I check to see if > it is, and if it's not, how can I install it? You can always check this setting (and other too) in: django.conf.global-set

Re: Calling User data from within templates

2007-09-03 Thread Robert
Shouldn't that automatically be "Turned on"? How can I check to see if it is, and if it's not, how can I install it? Thanks, sorry for such a dumb question -Robert On Sep 3, 2:20 pm, Alex Koshelev <[EMAIL PROTECTED]> wrote: > Check your TEMPLATE_CONTEXT_PROCESSOR setting. auth TCP must be > insta

Re: Calling User data from within templates

2007-09-03 Thread Alex Koshelev
Check your TEMPLATE_CONTEXT_PROCESSOR setting. auth TCP must be installed http://www.djangoproject.com/documentation/templates_python/#django-core-context-processors-auth On 3 сент, 22:33, Robert <[EMAIL PROTECTED]> wrote: > Hi all, I'm new to Django and python in general, so please overlook my >