I\'m using django-cms with apphooks to display book detail information. I need the page with the app hook to accept a slug that specifies which book to display.
I c
This was apparently due to our application having cms.middleware.multilingual.MultilingualURLMiddleware
which then forced all {% url %}
template tags and the reverse()
function to require the language namespace.
Since our site is not localized, removing the middleware worked fine. The documentation didn't seem that clear to me on this and finally found the answer from another source.