[Answered ]-Django Verbose Name being lost

2👍

Maybe because it’s now a regular form field and thus doesn’t have an attribute named verbose_name. Instead, it now has a label attribute.

Try this:

self.fields['information_request_issued_date'].label = 'Date Information Request Issued'
👤Abid A

Leave a comment