Maniac wrote: > You could subclass django.core.extensions.DjangoContext and > prefill it with your everpresent variables in __init__().
I ended up writing a one-line custom middleware that makes the user-instance available to my views as request.user. In order to have the user-data not only in the views but also in the templates, I'm passing a subclassed and prefilled django.core.template.Context to render_to_response. Feel free to correct and criticize this approach, suggestions are always welcome. Andreas