FAQ

What should I do if I get 'RootPageDoesNotExist'?

If you get this error message you probably have not created any pages yet, visit http://127.0.0.1:8000/admin/cms/page/ and create a page.

How do I add templates to the "template" dropdown menu?

Please add a TEMPLATES setting to your cms_settings.py like that:

from django.utils.translation import ugettext_lazy as _
TEMPLATES = (
    ('my_project/tralala_template.html', _('the tralala template')),
)