カスタムがであなたのフィールドに属性を追加することができますウィジェットによるフォームのメタ定義。
class SomeForm(forms.ModelForm):
class Meta:
model = SomeModel
widgets = {'field_name1': forms.Textarea(attrs={'data-bind':'value: field1'}),
'field_name2': forms.TextInput(attrs={'data-bind':'value: field2'})}
は、例えば、最初のフィールドがレンダリングされます:
<textarea id="id_field_name1" name="field_name1" data-bind="value: field1"></textarea>
更新:彼らはすべてが必要な場合は、ここにボーナスとして は、フォーム内のすべてのフィールドの属性を変更する簡単な方法は、例えば、特定のクラス(jsの他のアドオンやCSSスタイルに役立つ)
def __init__(self, *args, **kwargs):
super(SomeForm, self).__init__(*args, **kwargs)
for name, field in self.fields.items():
field.widget.attrs['class'] = 'some_form_field'
# this could be used in your case if the Django field name is the
# same as the KO.js field name
field.widget.attrs['data-bind'] = 'value: %s' % name