1

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

4

1 回答 1

4

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

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,
    )
于 2013-10-02T01:08:42.910 回答