How do I remove Label text in Django generated form?

前端 未结 3 870
深忆病人
深忆病人 2021-02-19 16:39

I have a form that is displaying well only for the label text that I don\'t want and I have tried all I could to let it off my form but it won\'t just go...

form

3条回答
  •  温柔的废话
    2021-02-19 16:56

    In ModelForms there will be default labels so you have to over-ride where you don't need labels

    you can define it like this

    class sign_up_form(forms.ModelForm):
        email = forms.CharField(widget=forms.Textarea, label='')
        class Meta:
            model = Users
            fields =['email']
    

    This method will not include labels for your form, other method depends on rendering in template. You can always avoid labels from form instead of {{ form.field.label }}

提交回复
热议问题