I\'m trying to show thumbnail images in Django admin, but I can only see the path to the images, but not the rendered images. I don\'t know what I\'m doing wrong.
Se
Add a method in your model (models.py):
models.py
def image_tag(self): return u'' % image_tag.short_description = 'Image' image_tag.allow_tags = True
and in your ModelAdmin (admin.py) add:
admin.py
readonly_fields = ('image_tag',)