In any of the class methods, you can access the request using self.request. This way your user profile will be accessible using self.request.user.
Based on the link you provided, you can use self.request.user in the get_initial method to set the value.
t
def get_initial(self): return { 'value1': self.request.user }
jondykeman
source share