I have a feeling this is something to do with the answer, but I'm wondering how get a queryset that contains null imagefields?
Doing something like:
Model.objects.filter(model_image__isnull=True)
Doesn't return anything.
In postgresql when there is no image field looks like '', so I use
Model.objects.filter(model_image='')