I have a model with a ForeignKey to User, and it needs to have a value. How do I automatically add the User value when submitting a form?
The model doesn't seem to have access to the request object, so I can't do it at it's save()
method.
Thanks in advance!