[Answer]-Extra form fields added in Django form render

1👍

Your form defines the fields name, designation and testimonial, but the model provides name, test and credentials. So the name field gets redefined with the extra styling, but the other two fields are simply added to the default fields provided by the model. If you want to override them, you need to use the same names.

Leave a comment