Django: ListView with post() method?
问题 I am trying to process two forms in a Django class based view. The site contains a form called form (based on GET ) for narrowing the list results of the ListView and the second form status_form (based on POST ). Both forms are required since the ListView returns a list of items. Form lets the user restrict the choices and status_forms lets the user flag incorrect items via a modal form (therefore it needs to be in the same template). My trouble is that ListView does not come with the method