I had this same issue before and it was due to TEMPLATE_CONTEXT_PROCESSORS being missing. Try adding code below in settings.py if not already there.
TEMPLATE_CONTEXT_PROCESSORS = ( 'django.contrib.auth.context_processors.auth', 'django.core.context_processors.debug', 'django.core.context_processors.i18n', 'django.core.context_processors.media', 'django.contrib.messages.context_processors.messages', 'django.core.context_processors.request', ) On Dec 27, 3:17 pm, Lee Connell <lee.a.conn...@gmail.com> wrote: > I have my media url and root set: > > MEDIA_URL = '/media/' > MEDIA_ROOT = os.path.join(os.path.abspath(os.path.dirname(__file__)), > 'media') > > This is what my template has: > > <html> > <head> > <title>Postfix Log Viewer</title> > <link rel="stylesheet" href="{{ MEDIA_URL }}css/log.css" > type="text/css"> > </head> > <body> > > The {{ MEDIA_URL }} shows up blank -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.