﻿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
15540	Meta Widgets doesn't work in form.Form	Adam Mckerlie	nobody	"You can't change the widget in the Meta.widgets for a regular form.

{{{

#Doesn't work
class SearchForm(forms.Form):
   search = forms.CharField(max_length=100)

   class Meta:
       widgets = {
           'search': forms.TextInput(attrs={'class': 'class_name'}),
       }

#Works Fine
class SearchForm(forms.Form):
   search = forms.CharField(max_length=100, widget=forms.TextInput(attrs={'class': 'class_name'}))

}}}

I feel that this could be extremely confusing for people."		closed	Forms	1.2		wontfix			Unreviewed	0	0	0	0	0	0
