Re: Form help_text and error list styling
Try django message framework On Jan 12, 2018 10:38, "Ruchit Bhatt" wrote: > Hi > I have made form for signup using Django 2.0 as below > > {% csrf_token %} > {% for non_field_error in form.non_field.errors %} > {{ non_field_error }} >
Form help_text and error list styling
Hi I have made form for signup using Django 2.0 as below {% csrf_token %} {% for non_field_error in form.non_field.errors %} {{ non_field_error }} {% endfor %} {% for field in form %} {{