On 07/03/07, Grupo Django <[EMAIL PROTECTED]> wrote: > > Hello, I have two questions: > > -Where can I browse the django API? > > - I have made a news app. One of the fields is author, i want to set > its default value to the username logged in the admin zone. How could > I do it? What do I have to import to use request.username? so I would > do: default= request.username, editable=False. > > Thank you! > You can find all necessary documentation on www.djangoproject.com. If you want to go trough the source, some examples and suggestions, you might want to see code.djangoproject.com
In order to automatically set the author, in your model definition you'll need to do two things. First of all - include the User model in the file where you define your models. Second - go to http://code.djangoproject.org/wiki/CookBookThreadlocalsAndUser and see how to do the trick to set the current user in your model. Note that default works, it's not always necessary to modify the save() methods, if you don't need to. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---