When you set verbose_name on a field of a django model, I see that it’s used in the Django Admin when you click into an object.
Are there other places verbose_name is used? If so, where?
When you set verbose_name on a field of a django model, I see that it’s used in the Django Admin when you click into an object.
Are there other places verbose_name is used? If so, where?
A relatively quick scan of the Django source shows that it’s used to build error messages in the generic CBVs (and other places), and as the label for the field in a ModelForm.