20

有谁知道是否有正确的方法可以去除酥脆的标签?

我做到了这一点:

self.fields['field'].label = ""

但这不是一个很好的解决方案。

4

6 回答 6

47

做就是了:

self.helper.form_show_labels = False

删除所有标签。

于 2014-07-09T16:09:49.897 回答
19

与 Boostrap 一起使用(请参阅文档

在您的表格中:

from crispy_forms.helper import FormHelper
from django import forms

class MyForm(forms.Form):
    [...]
    def __init__(self, *args, **kwargs):
        super(MyForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper()
        self.helper.form_show_labels = False 

在您的模板中:

<form method='POST' action=''>{% csrf_token %}
{% crispy form %}
<input type='submit' value='Submit' class='btn btn-default'>
</form>
于 2015-07-09T07:19:15.850 回答
9

您可以编辑field.html模板: https ://github.com/maraujop/django-crispy-forms/blob/dev/crispy_forms/templates/bootstrap/field.html#L7

向您的表单添加一个FormHelper属性来控制标签呈现并在该模板中使用它if。自定义FormHelper属性尚未正式记录,因为我没有时间,但我在我给出的主题演讲中谈到了它们,这里是幻灯片: https ://speakerdeck.com/u/maraujop/p/django-crispy-形式

于 2012-07-17T13:26:44.813 回答
5

下面的解决方案可让您从常规控件或脆控件中删除标签。不仅标签文本消失,而且标签使用的空间也被删除,因此您最终不会看到空白标签占用空间并弄乱您的布局。

下面的代码适用于 django 2.1.1。

# this class would go in forms.py
class SectionForm(forms.ModelForm):
    # add a custom field for calculation if desired
    txt01 = forms.CharField(required=False)

    def __init__(self, *args, **kwargs):
        ''' remove any labels here if desired
        '''
        super(SectionForm, self).__init__(*args, **kwargs)

        # remove the label of a non-linked/calculated field (txt01 added at top of form)
        self.fields['txt01'].label = ''

        # you can also remove labels of built-in model properties
        self.fields['name'].label = ''

    class Meta:
        model = Section
        fields = "__all__"

我不清楚 OP 对他展示的代码片段有什么问题,除了他没有将代码行放在正确的位置。这似乎是最好和最简单的解决方案。

于 2018-10-22T15:30:56.737 回答
4

如果您只是从输入中删除一些标签,那么在模型定义中明确不要给出标签名称,即:

field = models.IntegerField("",null=True)
于 2014-02-04T10:16:48.130 回答
0

要删除所有标签:

self.helper.form_show_labels = False

全部为 False 时显示特定标签:

HTML('<span>Your Label</span>')

全部为真时禁用特定字段的标签

self.fields['fieldName'].label = True

例子:

     Row(
            HTML('<span> Upolad Government ID (Adhar/PAN/Driving Licence)</span>'),
            Column('IdProof',css_class='form-group col-md-12 mb-0'),
            css_class='form-row'
        ),
于 2021-06-11T12:41:16.663 回答