初学Django,Django 修改models.py 字段后执行makemigrations报错,报错信息:
: (admin.E108) The value of 'list_display[3]' refers to 'account_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'. : (admin.E108) The value of 'list_display[4]' refers to 'password_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'.
第一遇到有点手足无措,搜索了一波,在这里找到了答案。
原来是我在admin.py中定义了AccountAdmin,
![Django:The value of 'list_display[3]' refers to 'account_admin', which is not a call](https://cache.yisu.com/upload/information/20200310/34/91018.jpg)
修改list_display中的account_admin,password_admin 即可解决,其实报错中的信息已经很明确了。
下一篇:同一个实例下拷贝数据库到其他库下