Re: Date Widget (or date format) in newforms

2007-07-19 Thread larry
> django.newforms contains a SplitDateTime field and widget for > splitting DateTime fields into two form fields (date and time) - > modifying this for Y/M/D shouldn't be too taxing. I've looked at that but, unfortunately, don't come close to understanding what it's doing -- in particular, I don'

Re: Date Widget (or date format) in newforms

2007-07-19 Thread Russell Keith-Magee
On 7/20/07, larry <[EMAIL PROTECTED]> wrote: > > Has anyone written a date widget with separate fields for day, month, > and year (and, ideally, a calendar) for the newforms package? Check out the capabilities of MultiWidget. This provides a mechanism to break apart a single model field into mult

Date Widget (or date format) in newforms

2007-07-19 Thread larry
Has anyone written a date widget with separate fields for day, month, and year (and, ideally, a calendar) for the newforms package? Failing that, is there any way to change the format in which the text widget used for dates displays and decodes the date. -MM-DD may be better in every way, bu