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
instead of
{{ form.field.label }}