I\'ve defined a model which contains a link an image. Is there a way to display the image in the model items list? My model looks like this:
class Article(mo
def image_tag(self, obj): return u'' % obj.image image_tag.short_description = 'Image' image_tag.allow_tags = True
and in your admin.py add:
readonly_fields = ('image_tag',)