如何将类添加到django表单标签?
当我使用 boolean result;
//define the result
setResult(Activity.RESULT_OK);
<label for="id_first_name">First name:</label>
我想添加{{ form.first_name.label_tag }}
标签。我该怎么做?
答案 0 :(得分:1)
您可以使用表单 init 方法来调用类
class YourForm(forms.Form)
def __init__(self, *args, **kwargs):
super(YourForm, self).__init__(*args, **kwargs)
self.fields['field_name'].widget.attrs['class'] = 'your_class'