I\'m using an ImageField to store profile pictures on my model.
ImageField
How do I set it to return a default image if no image is defined?
In your image field
field = models.ImageField(upload_to='xyz',default='default.jpg')
Note : path should be inside MEDIA_ROOT.