django-cms app hook at homepage error
问题 I'm playing with django-cms and I want to create an app-hook to an existing application. This is fine if the page I choose to show the app-hook is not the homepage. This is my urls.py for my application that I'm hooking in: from django.conf.urls.defaults import patterns, include, url urlpatterns = patterns('films.views', url(r'^$', 'index'), url(r'^(?P<film_id>\d+)/$', 'detail'), ) The cms_app.py is as follows: from cms.app_base import CMSApp from cms.apphook_pool import apphook_pool from