farhan0581 / django-admin-autocomplete-filter

A simple Django app to render list filters in django admin using autocomplete widget.
GNU General Public License v3.0
351 stars 75 forks source link

fix bug #56

Open guinner opened 3 years ago

guinner commented 3 years ago

At first, querystring is created_lt=2021-04-13+00%3A00%3A00%2B08%3A00. After I select a option from autocomplete filter, the querystring convert to created_ lt=2021-04-13%2000%3A00%3A00%2B08%3A00&fiter=1. The real param created_lt should be 2021-04-13 00:00:00+08:00. So must call replace first.