django-url-filter
django-url-filter copied to clipboard
Lookup options in Meta
ModelFilterSet
should support to specify lookups in Meta
:
class Meta:
model = Foo
lookups = {
"slug": ('exact', 'startswith',),
"title": ALL,
}