My Wiki!

Django-cms

Follow django-cms docs.

revision 1.10 required for django 1.9

Custom app before cms

For this specific problem, part of the problem is already pointed out by @danihp. You need to put the app with your custom model before "cms" in your INSTALLED_APPS.

INSTALLED_APPS = {
    'your_custom_app',
    '...',
    'cms',
}

Debug toolbar

if settings.DEBUG:
    import debug_toolbar
    urlpatterns += patterns('',
        url(r'^__debug__/', include(debug_toolbar.urls)),
    )

Navigation