我有一种破旧的django形式。
使用{% cripsy form %}
时,在模板中隐藏字段标签的最佳方法是什么?
我不希望用户看到MY_FIELD_1 and MY_FIELD_2
。
class mYForm(forms.ModelForm):
MY_FIELD_1 = forms.BooleanField()
MY_FIELD_2 = forms.BooleanField()
def __init__(self, *args, **kwargs):
...
...
self.helper = FormHelper()
self.helper.layout = Layout(
Field('MY_FIELD_1',),
Field('MY_FIELD_2',),
)
...
答案 0 :(得分:3)
如果您想在使用香脆表格FormHelper
时从表单中删除所有标签,那么您可以使用:
self.helper.form_show_labels = False
如果您想删除某些字段中的标签,则可以执行
self.fields['some_field'].label = False
其中some_field
是要删除其标签的字段的名称。