用django admin做后台的時候,
有些字段內容太長,像文章,長評論,新聞等可以限制顯示長度,超出部分用...代替

1.在model.py中
def short_content(self):
if len(str(self.content)) > 1000:
return '{}...'.format(str(self.content)[0:1000])
else:
return str(self.content)
short_content.allow_tags = True

2.在admin的 list_display中 字段名為定義的方法名

顯示:

