1π
β
Could someone explain me whatβs going on and how to resolve this?
As the error says, you have a model admin named CustomerAdmin
. Indeed:
<class 'accounts.admin.CustomerAdmin'>: (admin.E035) The value of 'readonly_fields[1]' is not a callable, an attribute of 'CustomerAdmin', or an attribute of 'accounts.Customer'.
For the readonly_fields
, it lists the customer_id
, but since that field is no longer available, it raises the error.
Source:stackexchange.com