You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I defined some filters using RelatedFieldAjaxListFilter (following the instructions inhttps://django-jet-reboot.readthedocs.io/en/latest/autocomplete.html) and I noticed that everytime I apply a new filter the previous ones are removed from the URL.
I defined some filters using RelatedFieldAjaxListFilter (following the instructions inhttps://django-jet-reboot.readthedocs.io/en/latest/autocomplete.html) and I noticed that everytime I apply a new filter the previous ones are removed from the URL.
Using as example the code bellow: When I apply the user's filter the URL is changed to http://localhost:8000/admin/example_admin/?user__id__exact=24. Applying the 'product's filter the URL changes to http://localhost:8000/admin/example_admin/?product__id__exact=3 (erases the previous filter). The right one should be http://localhost:8000/admin/example_admin/?user__id__exact=24&product__id__exact=3.
`
`
Someone knows a way to fix that?
The text was updated successfully, but these errors were encountered: