Django super __init__ causing m2m form to not validate?

You don't show the view, but presumably you're instantiating the form with the usual form = HuntingReportForm(request. POST) . Unfortunately, you've changed the signature of the form's init method to expect user as the first positional argument, so the data isn't being passed in.

You should move user to kwargs and treat it the same as your validate argument.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions