﻿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
17283	Adding Human Readable Name to forms.DateField with input_formats option causes input_format to complain about multiple values for input_formats	amit.prakash.ambasta@…	nobody	"The following code snippet

{{{
#!python
from django import forms
from django.utils.translation import ugettext_lazy as _

class SearchForm( forms.Form):
    d_o_b = forms.DateField( _( 'Human Readable Name'), required=False, input_formats=('%d-%m-%Y',))
}}}
causes django to complain `__init__() got multiple values for keyword argument 'input_formats'`

while 
{{{
#!python
    d_o_b = form.DateField( required=False, input_formats=('%d-%m-%Y',))
}}}
works fine.

"	Bug	closed	Forms	1.3-rc	Normal	invalid			Unreviewed	0	0	0	0	0	0
