You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document django-cms integration i.e. getting page versions etc:
This is a little more involved because you may want different things at this point, i.e. for preview you may want to look at any version for a page / language, I'm guessing that as you want the edit mode you want the latest draft.
from djangocms-versiong.constants import DRAFT
PageContent._original_manager.filter(
page=source_page, language=language, version__state=DRAFT
).first()
You could also use the versioning helper remove_published_where instead of the '_original_manager'
The following project is a good example of documentation configuration setup: https://github.com/evildmp/BrachioGraph/tree/master/docs
Mentions FIL, remove this from everywhere, this is a community project!
Important files:
The text was updated successfully, but these errors were encountered: