Search code examples
pythonpython-3.xdjangodjango-formsdjango-admin

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


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?


Solution

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