I\'ve defined a simple Django app that includes the following model:
class Project(models.Model): name = models.CharField(max_length=200) thumbnail =
Check you settings.py
media settings.
I had same error and found that:
MEDIA_URL = '/media/' did the trick.
Before i only had:
MEDIA_URL = 'media/'