我想为显示年 - 月 - 日期的本地时间格式自定义Schema.Datetime字段小部件。 谢谢!
答案 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,
)