I add a ImageField in my model like
class UserImage(models.Model):
photo = models.ImageField(upload_to='target_path')
....
after I save an image, let's say 'a.jpg', then I want user the filename 'a.jpg' to filter the model, what should I write like:
UserImage.objects.filter(photo.filename='a.jpg')
....