I'm working on a form with Formlib that looks like this:
from zope.schema import Choice, Float, Int, Date, TextLine from Products.Five.formlib.formbase import PageForm class ISimuladorForm(Interface): """ Zope Interface for the financial simulator for sofomanec. """ start_date = Date(title=_(u'Start Date'), description=_(u'Loan start date.'), required=False) . . . class SimuladorForm(PageForm): form_fields = form.FormFields(ISimuladorForm)
The default input format for start_date
is "mm/dd/yy", but users need to input the start_date
in this format: "dd/mm/yy".
How do I change the default Date format for this Interface/Schema/Form?