新版本的 sorl-thumbnail ,如何在 django admin 中显示拇指?

发布于 2024-10-18 06:44:34 字数 122 浏览 1 评论 0原文

我正在使用新版本的 Sorl-thumbnail,但我无法在 django admin 中显示拇指...

如何使用 get_thumbnail() ?,只是我可以看到图像的“缓存”url...

谢谢

im using the new version of Sorl-thumbnail, but i cant show thumbs in django admin...

how ill use get_thumbnail() ?, just i can see the "cache" url of the images...

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话已封尘 2024-10-25 06:44:34

我做到了

from sorl.thumbnail import get_thumbnail
def thumb(self):
        if self.imagen:
            t = get_thumbnail(self.imagen,"50x50",crop='center', quality=99)
            return u'<img src="%s" />' % t.url            
        else:
            return u"None"
    thumb.short_description = 'Foto'
    thumb.allow_tags = True 

i did it

from sorl.thumbnail import get_thumbnail
def thumb(self):
        if self.imagen:
            t = get_thumbnail(self.imagen,"50x50",crop='center', quality=99)
            return u'<img src="%s" />' % t.url            
        else:
            return u"None"
    thumb.short_description = 'Foto'
    thumb.allow_tags = True 
拥抱没勇气 2024-10-25 06:44:34

It's a new version with beter docs too! :) http://thumbnail.sorl.net/examples.html#admin-examples (This is for displaying images in forms, not in listing).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文