Can you change a field label in the Django Admin application?

Josh Smeaton picture Josh Smeaton · Dec 13, 2008 · Viewed 55.5k times · Source

As the title suggests. I want to be able to change the label of a single field in the admin application. I'm aware of the Form.field attribute, but how do I get my Model or ModelAdmin to pass along that information?

Answer

Javier picture Javier · Dec 13, 2008

the verbose name of the field is the (optional) first parameter at field construction.