I would like to look up users by their email without worrying about uppercase letters.
How would I do this? I tried
customer = Customer.objects.get(email__lower="test@gmail.com")
and got this error.
django.core.exceptions.FieldError: Unsupported lookup 'lower' for EmailField or join on the field not permitted.