Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Server media URL:

from django.conf import settings
(r'^public/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT}),

Function model:

def image_img(self):
        if self.image:
            return u'<img src="%s" />' % self.image.url_125x125
        else:
            return '(Sin imagen)'
        image_img.short_description = 'Thumb'
        image_img.allow_tags = True

admin.py:

class ImagesAdmin(admin.ModelAdmin):

    list_display= ('image_img','product',)

And the result:

<img src="http://127.0.0.1:8000/public/product_images/6a00d8341c630a53ef0120a556b3b4970c.125x125.jpg" />
share|improve this question

3 Answers

up vote 29 down vote accepted

This is in the source for photologue (see models.py, slightly adapted to remove irrelevant stuff):

def admin_thumbnail(self):
    return u'<img src="%s" />' % (self.image.url)
admin_thumbnail.short_description = 'Thumbnail'
admin_thumbnail.allow_tags = True

The list_display bit looks identical too, and I know that works. The only thing that looks suspect to me is your indentation - the two lines beginning image_img at the end of your models.py code should be level with def image_img(self):, like this:

def image_img(self):
    if self.image:
        return u'<img src="%s" />' % self.image.url_125x125
    else:
        return '(Sin imagen)'
image_img.short_description = 'Thumb'
image_img.allow_tags = True
share|improve this answer
+1 for indentation being the problem. – Daniel Roseman Sep 6 '09 at 9:06
Yes, was the indentation ,thanks – Asinox Sep 6 '09 at 14:42
Where you put that image_img function ? I have written it under class ImagesAdmin(admin.ModelAdmin): but it gives me error as Caught TypeError while rendering: image_img() takes exactly 1 argument (2 given) – brsbilgic Sep 30 '11 at 0:08
@brsbilgic - It needs to go under your model, unless you add a second parameter after self, called something like obj, which represents the model you're using. See docs.djangoproject.com/en/dev/ref/contrib/admin/…. – Dominic Rodger Oct 2 '11 at 19:08

Adding on to @dominic, I wanted to use this in multiple models, so I created a function that I could call in each model, inputing the image to be displayed.

For instance in one app I have:

from django.contrib import admin

from .models import Frontpage
from ..admin import image_file


class FrontpageAdmin(admin.ModelAdmin):
    list_display = ('image_thumb', ...)

    image_thumb = image_file('obj.image()') 

admin.site.register(Frontpage, FrontpageAdmin)

with image a function of Frontpage that returns an image.

In another app I have:

from django.contrib import admin

from .models import Exhibition
from ..admin import image_file


class ExhibitionAdmin(admin.ModelAdmin):
    list_display = ('first_image_thumb', ...)

    first_image_thumb = image_file('obj.related_object.image',
                                   short_description='First Image')

admin.site.register(Exhibition, ExhibitionAdmin)

This allows me to specify the image object and the short_description while keeping the boilerplate in another file. The function is:

from sorl.thumbnail import get_thumbnail
from django.conf import settings


def image_file(image, short_description='Image'):
    def image_thumb(self, obj):
        image = eval(image_thumb.image)
        if image:
            thumb = get_thumbnail(image.file, settings.ADMIN_THUMBS_SIZE)
            return u'<img width="{}" height={} src="{}" />'.format(thumb.width, thumb.height, thumb.url)
        else:
            return "No Image"

    image_thumb.__dict__.update({'short_description': short_description,
                                 'allow_tags': True,
                                 'image': image})
    return image_thumb
share|improve this answer

Well, these solutions look quite confusing to me. A example such as:

@models.py
class myModelA (models.Model):
   image = models.ForeignKey(Photo, blank = True, null= True, related_name="gameStamp")
   ...

class myModelB (myModelA):
   ...

What sould I do to get this image as thumbnail in the Django admin view?

I suposse something @admin.py where I already have:

from django.contrib import admin
from apps.games.models import *
from apps.accounts.models import *

class myModelB_Admin(admin.ModelAdmin):
    inlines = [  A,  B,]


admin.site.register(myModelB, myModelB_Admin)

I hope this problem example might help more peopole. :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.