[Answered ]-Site on localhost not displaying image

2👍

try

MEDIA_URL = '/media/'

and in template

<img src="/media/blabla.jpg" />

Also put these lines of code inside your urls.py and set DEBUG to True

if settings.DEBUG:
  # static files (images, css, javascript, etc.)
  urlpatterns += patterns('',
    (r'^media/(?P<path>.*)$', 'django.views.static.serve', {
    'document_root': settings.MEDIA_ROOT}))

Leave a comment