本文整理汇总了Python中mezzanine.pages.models.RichTextPage.status方法的典型用法代码示例。如果您正苦于以下问题:Python RichTextPage.status方法的具体用法?Python RichTextPage.status怎么用?Python RichTextPage.status使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mezzanine.pages.models.RichTextPage
的用法示例。
在下文中一共展示了RichTextPage.status方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: update_cms_page
# 需要导入模块: from mezzanine.pages.models import RichTextPage [as 别名]
# 或者: from mezzanine.pages.models.RichTextPage import status [as 别名]
def update_cms_page(self, title=None, content='', parent_title=None, draft=False):
if not title:
title = 'Untitled'
from mezzanine.pages.models import Page, RichTextPage
page = get_cms_page_from_title(title)
in_menus = [2,3]
# create the page
from mezzanine.core.models import CONTENT_STATUS_PUBLISHED, CONTENT_STATUS_DRAFT
if not page:
parent_page = get_cms_page_from_title(parent_title)
page = RichTextPage(title=title, content_model='richtextpage', parent=parent_page, content=content, status=CONTENT_STATUS_PUBLISHED)
page.save()
page.status = CONTENT_STATUS_DRAFT if draft else CONTENT_STATUS_PUBLISHED
page.in_menus = in_menus
else:
# Can't find an easy way to edit page.richtextpage.content, so let's write directly to the DB!
from django.db import connection
cursor = connection.cursor()
cursor.execute('''update pages_richtextpage set content = %s where page_ptr_id = %s''', [content, page.id])
page.save()
return page