I have banged my head over this for the last few hours. I can not get {{ MEDIA_URL }} to show up
in settings.py
.. MEDIA_URL = \'http://10.10.0.106/a
Adding media template context processor also gets the job done
TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.request", "django.contrib.auth.context_processors.auth", "django.core.context_processors.media", "django.core.context_processors.static", )