在modelform django上添加类

时间:2016-12-21 18:55:04

标签: django django-forms django-templates

如何将类动态添加到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'})

我做了上面的代码,但由于某种原因它没有用。班级'无线电内联'未在模板上创建。

0 个答案:

没有答案