Monday, December 27, 2010

Working with static media files, {{ MEDIA_URL }} shows up blank even with settings.py set

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-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment