Jacob Kaplan-Moss wrote: > If you use django.core.extensions.DjangoContext instead of > django.core.template.Context the {{ user }} variable will > automatically be available in your templates. If > {{ user.is_anonymous }} is True then the user is *not* > logged in; otherwise the user info is available as > {{ user.username }}, {{ user.email }}, etc.
Adrian Holovaty wrote: > A quick addition -- note that you can also do this in the > view: > > def foo_view(request): > if request.user.is_anonymous(): > # Do something for anonymous users > else: > # Do something for logged-in users This assumes that I'm using Django's user-model, right? I should have mentioned that I don't, I'm using a custom model. Is there a way to make a custom model available in all views and templates without explicitly passing it as a parameter every time? I read about writing a custom Context in the docs but that doesn't seem to save code -- "user = get_user(request)" will still be required and instead of passing "'user' : user" to render_to_response I'll have to instantiate the Context and pass it. Or am I missing something? Andreas