How is that incorporated into the django-filter infrastructure? Member is a model related to the model being filtered. If I want just the last_name, I would have:
member__last_name = django_filters.filterset.CharFilter(lookup_type='icontains')
and in Meta:
fields = ['member__last_name']
I can put name in __init__ (if that's where it should go) to get the ORed queryset, but how does it get the argument from the input and then return the resulting queryset?