django-cms: attributes and methods available to current page

current-page, django, django-cms

Solution

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

Problem

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 ?

Original source