I am working on a small intranet site for a small company, where user should be able to post. I have imagined a very simple authentication mechanism where people just enter their email address, and gets sent a unique login url, that sets a cookie that will always identify them for future requests.

In my template setup, I have base.html, and the other pages extend this. I want to show logged in or register button in the base.html, but how can I ensure that the necessary variables are always a part of the context? It seems that each view just sets up the context as they like, and there is no global context population. Is there a way of doing this without including the user in each context creation?

Or will I have to make my own custom shortcuts to setup the context properly?

link|improve this question

74% accept rate
feedback

6 Answers

up vote 15 down vote accepted

In a more general sense of not having to explicitly set variables in each view, it sounds like you want to look at writing your own context processor.

From the docs:

A context processor has a very simple interface: It's just a Python function that takes one argument, an HttpRequest object, and returns a dictionary that gets added to the template context. Each context processor must return a dictionary.

link|improve this answer
feedback

@Ryan: Documentation about preprocessors is a bit small

@Staale: Adding user to the Context every time one is calling the template in view, DRY

Solution is very simple

A: In your settings add

TEMPLATE_CONTEXT_PROCESSORS = (
    'myapp.processor_file_name.user',
)

B: In myapp/processor_file_name.py insert

def user(request):
    if hasattr(request, 'user'):
        return {'user':request.user }
    return {}

From now on you're able to use user object functionalities in your templates.

{{ user.get_full_name }}
link|improve this answer
Django gives the error Put 'django.contrib.auth.context_processors.auth' in your TEMPLATE_CONTEXT_PROCESSORS setting in order to use the admin application. And even if I do that, the templates still doesn't know about user. – hobbes3 Mar 10 at 17:27
@hobbes3 since you are not using RequestContext the context processors do not get executed. – rebus Mar 10 at 18:55
@rebus Actually in my views.py, I passing along a simple dictionary using render_to_resposne as oppose to a RequestContext. Thanks for the help. – hobbes3 Mar 11 at 16:32
feedback

There is no need to write a context processor for the user object if you already have the "django.core.context_processors.auth" in TEMPLATE_CONTEXT_PROCESSORS and are using RequestContext in your views.

link|improve this answer
1  
This template context variable is not available if a RequestContext is not being used. – zalun Jul 1 '09 at 12:50
True, you have to use RequestContext – rebus Mar 10 at 18:47
feedback

@Dave To use {{user.username}} in my templates, I will then have to use requestcontext rather than just a normal map/hash: http://www.djangoproject.com/documentation/templates_python/#subclassing-context-requestcontext

So I guess there are no globals that the template engine checks.

But the RequestContext has some prepopulate classes that I can look into to solve my problems. Thanks.

link|improve this answer
feedback

If you can hook your authentication into the Django authentication scheme you'll be able to use request.user.

I think this should just be a case of calling authenticate() and login() based on the contents of your Cookie.

Edit: @Staale - I always use the locals() trick for my context so all my templates can see request and so request.user. If you're not then I guess it wouldn't be so straightforward.

link|improve this answer
feedback

its possible by default, by doing the following steps, ensure you have added the context 'django.contrib.auth.context_processors.auth' in your settings. By default its added in settings.py, so its looks like this

TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.auth',)

And you can access user object like this,

{% if user.is_authenticated %}
<p>Welcome, {{ user.username }}. Thanks for logging in.</p>
{% else %}
    <p>Welcome, new user. Please log in.</p>
{% endif %}

For more information, refer here http://docs.djangoproject.com/en/1.2/topics/auth/#authentication-data-in-templates

link|improve this answer
You also need to use RequestContext instead of Context in this case. – rebus Mar 10 at 19:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.