[Answer]-How to output django_filters.RangeFilter text boxes inline?

1👍

Try this:

{{ filter.form|bootstrap_inline }}

OR

<form action="" method="get" class="form-inline">

To use class=”form-inline” on the form element, also change the “|boostrap” template tag to “|bootstrap_inline”.

👤chandu

Leave a comment