微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Django:The value of 'list_display[3]' refers to 'account_admin', which is not a call

初学Django,Django 修改models.py 字段后执行makemigrations报错,报错信息:

<class 'test2.admin.AccountAdmin'>: (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'.
<class 'test2.admin.AccountAdmin'>: (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

修改list_display中的account_admin,password_admin 即可解决,其实报错中的信息已经很明确了。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐