[Answer]-Passing FormView data from CBV to another CBV

1👍

Why not use the same view and simply override the get_queryset method?

edit: as I see you have a separate SearchView, this way you should simply change the form’s action from empty to {% url "name.of.your.resultsview" %} and override the SearchView’s get_queryset.

Leave a comment