Attributing a specific class to each field of a django-form
我在Django中有一个表单,我想将一个类赋给一些字段。这是因为我想在我的CSS代码中使用这些类,并且我不希望所有字段都具有相同的样式。
例如,我的窗体有两个文本字段和一个按钮。我不想将文本字段设置为彼此相同的样式。我要第一个从右向左,第二个从左向右。
我们可以使用
1 2 3 4 5 6 | class CommentForm(forms.Form): name = forms.CharField( widget=forms.TextInput(attrs={'class':'special'})) url = forms.URLField() comment = forms.CharField( widget=forms.TextInput(attrs={'size':'40'})) |
更多的在这里