如何将类动态添加到modelForm上的字段。
class MyForm(ModelForm):
class Meta:
model = Post
fields = ['type']
widgets = {
'type' : RadioSelect()
}
def __init__(self, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
self.fields['type'].widget.attrs.update( {'class':'radio-inline'})
我做了上面的代码,但由于某种原因它没有用。班级'无线电内联'未在模板上创建。