Using Crispy Forms Helpers with Django-filter

I am trying to use more and more of the django packages when I do new stuff. I have gotten stuck on the combo of crispy-forms (bootstrap 5) and django-filters.

How do I add a Layout/Helper from crispy form to a form from django-filter?
If I make the form “crispy” with the crispy-filter:

{{product_filter.form|crispy}}

It renders the form vertically, but I want it to render horizontally since it is a search filter.

For those who end up on this question, I managed to get that working with the help of this Gist : How to integrate django-crispy-forms, django-tables2 and django-filter in order to display a paginated table with filter functionality. · GitHub

Hope it will help :wink: