Yes, you can perform case-insensitive filtering in Django using the iexact lookup. It matches the specified value regardless of case.
Here's an example:
from myapp.models import MyModel
# Case-insensitive filter on 'field1' matching 'value1'
queryset = MyModel.objects.filter(field1__iexact='value1')