I am still relatively new to Django and have just started to understand Django-CMS, however I cannot go through the basic introduction from the official docs .
My problem may be related to sekizai, but it looks like a basic problem with url.py.
Basically, I followed the textbook almost exactly. The only difference is that I have a cms application on blog /, the full path ~ / workspace / djangocms / blog /. I correctly set STATIC_URL and STATIC_ROOT in the settings.py parameters, as well as my MEDIA_URL and MEDIA_ROOT .
I am raising the media path and directory, because if I set the base template for the css link in {{ MEDIA_URL }}css/somecss.min.css , it works fine. However, doing the same with STATIC_URL: {{ STATIC_URL }}css/somecss.min.css does not work and produces 404s.
Also, from what I can tell, by default / static / routes seem to work fine for other directories. The code generated by {% cms_toolbar %} generates a fine and css from places like /static/cms/css/plugins/cms.toolbar.css that are properly served.
Urls.py content
from django.conf.urls.defaults import * from django.contrib import admin from django.conf import settings admin.autodiscover() urlpatterns = patterns('',
source share