Django admin: How to display the field marked as “editable=False” in the model?

Use Readonly Fields. Like so (for django >= 1.2):

class MyModelAdmin(admin.ModelAdmin):
    readonly_fields=('first',)

Leave a Comment