I intend to accept the values for the fields in my form from the user. However, I wish to have a common heading in the first row on the page for all of the rows (since the user will be adding multiple rows). I need help with telling django to not show the field name to the user and only show the textarea for entering the value.
How do I disable the display of the field name that is being shown in the form?
In my models.py, I added the verbose_name field and set it to blank.
This ensures that the field name:field1 is not shown when the form is displayed.