django2.1---后台管理 admin 字段內容過長,省略號替代


用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中 字段名為定義的方法名

顯示:

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM