django admin 内容过长 截取加省略号
使用系统自带的admin管理,内容后台显示过长,然后在list_display中定义相关的标签方法
def short_content(self):
if len(str(self.content)) > 1000:
return '{}...'.format(str(self.content)[0:1000])
else:
return str(self.content)
short_content.short_description="内容简介"
本文来自博客园,作者:super_ip,转载请注明原文链接:https://www.cnblogs.com/superip/p/17242782.html