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

Support for non relational attribute filtering #49

Open mcabrams opened 3 years ago

mcabrams commented 3 years ago

Is it possible to use this for autocomplete filters that deal with a normal field instead of relational field? I.e. if I have a model

class Foo(models.Model):
    bar = models.CharField(max_length=32)

Is it possible to make an autocomplete filter for the bar field?

farhan0581 commented 3 years ago

Currently it works only for the relational models.Have to see for this requirement.

FinnGu commented 1 year ago

I am looking for this feature as well. Is there any way, I could help with this?