New version of sorl-thumbnail , how show thumb in django admin?

1.9k Views Asked by At

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

2

There are 2 best solutions below

0
On BEST ANSWER

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 
0
On

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).