The main view is a simple paginated ListView and I want to add a search form to it.
I thought something like this would do the trick:
class MyListView(ListView, FormView):
form_class = MySearchForm
success_url = 'my-sucess-url'
model = MyModel
# ...
But apparently I got it wrong .. and I can't find how to do it in the official documentation.
Suggestions ?