Skip to content

Instantly share code, notes, and snippets.

@yakky
Forked from armonge/admin.py
Created May 2, 2014 13:30
Show Gist options
  • Save yakky/7ec1b326748e82f4382c to your computer and use it in GitHub Desktop.
Save yakky/7ec1b326748e82f4382c to your computer and use it in GitHub Desktop.
class ProductAdmin(admin.ModelAdmin):
list_display = ('name','thumb')
def thumb(self, obj):
return render_to_string('thumb.html',{
'image': obj.image
})
thumb.allow_tags = True
{% load thumbnail %}
{% thumbnail image '100x100' crop="top" as im %}
<img src="{{ im.url }}" alt="">
{% endthumbnail %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment