I am using DjangoCMS for a website, and I am trying to add a registration app . Putting it in all works well, at the moment hard-coded into the urls conf, BUT, I would like to use the CMS to set the content on some of pages in the registration flow..
e.g. on the few pages the registration app uses in its flow, like "register", "activate", "activation expired", etc I would like to use CMS content for the relatively static texts, teasers, etc... using text and other plugins, etc.
(I tried to setup pages in django-cms that mirror the same page structure as the registration pages (e.g. as my registration page is under /account/register I created a account page with a child-page register .. and added the template for the registration form to the CMS templates...). This works with some CMSs, but not with djano-cms... :-(.. the moment django-cms takes over the views from the registration app don't get involved anymore, and so forms don't work, etc... )
Is there any way to do this?