Hi
I want to integrate django-categories (
https://github.com/washingtontimes/django-categories) with django-page-cms so that when adding or editing pages in admin, there's an extra 'categories' field available.
For my own custom apps, it's simply a case of registering my model to the categories model as a foreign key:
import categories
categories.register_m2m(MyModel, 'categories', {'related_name':'mymodel_categories'})
However, I'm struggling to figure out how to integrate it with page-cms. Can anyone shed any light on this - either from direct experience of integrating with this app, or more generally?
Thanks