On May 26, 1:08 pm, "Daniele Procida" <[email protected]> wrote: > Does something exist there something along the lines of: > > prepopulated_fields = { > "author": ([something to retrieve currently-logged-in user from > authmod.User],) > } > > Thanks, > > Daniele
you should simply pass a RequestContext object to your templates, if you haven't touched much the initial INSTALLED_APPS list, then your templates will contain a ``request`` variable, and request.user is the current user. V --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

