Even though a field is marked as \'editable=False\' in the model, I would like the admin page to display it. Currently it hides the field altogether.. How can t
\'editable=False\'
Your read-only fields must be in fields also:
fields = ['title', 'author', 'content', 'published_date', 'updated_date', 'created_date'] readonly_fields = ('published_date', 'updated_date', 'created_date')