1👍
✅
Assuming your asking how the Page
model in django CMS knows it’s relation to it’s Apphooks, it is stored in the application_urls
field:
That field will hold the class name of your apphook. You can thus get the apphook class from a page object using apphook_pool.get_apphook(page.application_urls)
.
👤ojii
Source:stackexchange.com