I have implemented a pretty standard use of Django-filter, and I noticed that when I submit my query, the URL populates not just with the filters I entered, but with blank values for every filter I did not as well.
For example, when I fill out just the STATUS_CODE filter, and then search on my site, I get
http://localhost:8888/request-log/?status_code=200&route=&time_sent_0=&time_sent_1=&python_error_msg=&s3_upload_failed=&s3_error_msg=
Ideally, I would like the URL to only show fields that aren't blank. So, it would go to
http://localhost:8888/request-log/?status_code=200
What is the best way to do this?