Exemplo n.º 1
0
class Post(WebPage):

    class_id = 'blog-post'
    class_title = MSG(u'Blog Post')
    class_description = MSG(u'Create and publish Post')
    class_icon16 = 'blog/Blog16.png'
    class_icon48 = 'blog/Blog48.png'
    class_views = ['view', 'edit', 'commit_log']

    # Fields
    date = Date_Field(stored=True, title=MSG(u'Date'))
    title = WebPage.title(required=True)
    data = WebPage.data(widget=rte)

    # Views
    new_instance = Post_NewInstance
    view = Post_View
    edit = File_Edit(fields=['title', 'date', 'data', 'share'])