We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2929d08 commit dead04dCopy full SHA for dead04d
docs/filtering.rst
@@ -114,7 +114,7 @@ create your own ``Filterset`` as follows:
114
115
class AnimalFilter(django_filters.FilterSet):
116
# Do case-insensitive lookups on 'name'
117
- name = django_filters.CharFilter(lookup_type='iexact')
+ name = django_filters.CharFilter(lookup_expr=['iexact'])
118
119
class Meta:
120
model = Animal
0 commit comments