By default, when a form is created in django using ModelForm, the labels for each field are basically the name of each field with the first letter capitalized. However, I want to write my own labels for each of the fields instead of using the default ones. Is there a shortcut for doing that?
Share
Yes, add verbose_name to the field definition.