Allowing Edit to editable=False Fields in Django Admin
DRF will use the editable=False on a field to default the Serializer to read-only . This is a very helpful / safe default that I take advantage of (ie I won't forget to set the Serializer to read-only). That being said once I have set editable=False is there any way to then force the Django admin to allow editing one of those fields? Presumably the admin is a super user and I do want him to be able to change the fields value but fore safety I want the default Serializer logic to be read only. UPDATE I don't actually need to be able to edit the field as much as "set-it" when I create the object