Read the Django docs about ModelForms, then use the 'exclude' kwarg to exclude the author from your ModelForm.
Then, use request.user to get the appropriate user in your view and pass that to the form save(), which you must override to accept the extra argument, and use that user in the save() method to set the author directly. -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.