You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
It sounds like you want to initialize your form in the view. You can also do this by passing an initial keyword argument to the form constructor: exampleform = ExampleForm(initial={"examplefield": request.user.first_name})
This would set the examplefield of ExampleForm to the requesting user's first name.