Hey, #django people: Do you know any documentation which describes the control flow of all the many functions in form handling with generic views? I got lost in all the get_form_kwargs, get_initial, form_valid and co. Thanks!
@tykling nice, but not what i was looking for. I still did not know in which order which function is called from this.
@benni they are called from the bottom to the top, so for CreateView you go to http://ccbv.co.uk/projects/Django/2.2/django.views.generic.edit/CreateView/ and see that setup() is called first
@tykling ah great! I will try to work with this.