3

I have been learning Django-CMS for a while now. I was trying to hook one of my app to a cms page while still using template assigned to it. I came to know that one can retrieve current template from request.current_page object. I searched a lot on current_page but could not get any decent document on it.

I was wondering what other attributes and methods are defined in current_page..

What is the best way to get every information(title, menu, template, plugins, apps attached, etc) on the current page ?

Asur
  • 1,949
  • 4
  • 23
  • 41

1 Answers1

5

Digging into the source it seems that current_page has all the attributes and methods from cms.models.pagemodels.Page model.

Asur
  • 1,949
  • 4
  • 23
  • 41