'How do I make a non-editable field editable in Django?

I have a field creation with auto_now_add=True in my model. I want to be able to edit this from the admin website, but when I try to display the field, I get the following error:

'creation' cannot be specified for model form as it is a non-editable field

I tried adding editable=True to the model field as per the docs, but that did not work.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source