In Plone 6.0.14 with plone.app.z3cform 4.3.2, I wanted to customize the display format of the date value. However, it seems it does not use the set locale format or the override locale format in the registry. So my solution was to customize the date widget. I used the following code:
interfaces.py:
from plone.app.z3cform.interfaces import IDateWidget as IDateWidgetBase
class ICustomDateWidget(IDateWidgetBase):
"""Custom date widget marker interface"""
custom_date_widget.py:
from plone.app.z3cform.widgets.datetime import DateWidget
from my.package.interfaces import ICustomDateWidget
from z3c.form.interfaces import IFieldWidget
from z3c.form.widget import FieldWidget
from zope.interface import implementer, implementer_only
@implementer_only(ICustomDateWidget)
class CustomDateWidget(DateWidget):
def render(self):
if self.mode != "display":
self.addClass("form-control")
return super().render()
if not self.value:
return ""
field_value = self._converter(self.field, self).toFieldValue(self.value)
if field_value is self.field.missing_value:
return ""
return field_value.strftime("%d %b %Y")
@implementer(IFieldWidget)
def CustomDateFieldWidget(field, request):
return FieldWidget(field, CustomDateWidget(request))
Is there another simpler way? Looking at the p.a.z3cform code, it accepts pattern_options but it does not seem to be used by the display mode of the widget.