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
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
<label>MY LABEL</label>
instead of {{ form.field.label }}
just set a class for the field in the widgets and in your style add:
.ClassName label{
display: none;
}
In __init__
method set your field label as empty.This will remove label text.
def __init__(self, *args, **kwargs):
super(sign_up_form, self).__init__(*args, **kwargs)
self.fields['email'].label = ""