如何自定义Schema.Datetime小部件,只在Dexterity环境中显示年,月,日格式?

时间:2013-10-01 23:52:50

标签: plone datetime-format dexterity

我想为显示年 - 月 - 日期的本地时间格式自定义Schema.Datetime字段小部件。 谢谢!

1 个答案:

答案 0 :(得分:4)

您可以使用日期字段,它会自动呈现仅限日期的小部件:

from my.package import _
from plone.supermodel import model
from zope import schema

class IMyContentType(model.Schema):
    ...

    start_date = schema.Date(
        title=_(u'Start date'),
        description=_(u'This widget will show only the date.'),
        required=False,
    )