Possible Duplicate:
Django forms request.user
I'd like to update a logging model while saving a ModelForm, overriding the save() method of the ModelForm.
My problem is that I need, when populating the log, to add the username of the user who posted the form, and request.user is not available at this moment (which is normal, I'm in the ModelForm save() method...).
Is there any way to access to this value, other than adding an hidden input to recognize the author of the POST ?