﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5526	Localized Date/DateTime fields proposal	Jan Rademaker	Marc Garcia	"This is an attempt at providing Date/DateTime fields for locales other than
English. The patch provides a !DateField, !DateTimeField and
!DateTimeInput widget that accept Dutch input.

It should be relatively easy to add additional locales (at least, that was the setup) .

Short example:
{{{
>>> from django.contrib.localflavor.nl.forms import DateField
>>> f = DateField()
>>> f.clean('25 augustus 2003')
datetime.date(2003, 8, 25)

>>> from django.contrib.localflavor.nl.widgets import DateTimeInput
>>> d = DateTimeInput(date_output_format='%d %B %Y')
>>> d.render('foo', datetime.now())
u'<input type=""text"" name=""foo"" value=""17 september 2007"" />'
}}}
"		closed	contrib.localflavor	dev		fixed	i18n-fixed		Fixed on a branch	1	0	0	0	0	0
