I've upgrade my Django from 1.3 to 1.4, and using django.contrib.staticfiles
.
I have to change the ADMIN_MEDIA_PREFIX
to only use STATIC_URL
, wich is defined as STATIC_URL = '/static/'
When I open the admin interface, css files are linked to /admin/css/base.css, but, if I'm correct, they should point to static/admin/css/base.css
Don't know why my admin interface is omitting the static_url
.
Thanks!