ERRORS: : (admin.E108) The value of 'list_display[1]' refers to 'titl...

今天在django中报错,硕士RoleAdmin中无法找到list_display列表中的字段title,回头一看  原来在models.py中定义表的字段时,就没有title,而是tilte

ERRORS: : (admin.E108) The value of 'list_display[1]' refers to 'titl..._第1张图片

所以在RoleAdmin中:‘title’修改成‘tilte’

ERRORS: : (admin.E108) The value of 'list_display[1]' refers to 'titl..._第2张图片

 

转载于:https://www.cnblogs.com/Zhao159461/p/11040564.html

你可能感兴趣的:(ERRORS: : (admin.E108) The value of 'list_display[1]' refers to 'titl...)