I've got sorl-thumbnail up and running in templates with Redis to store the thumbnails. Great stuff!! However, I would like to have thumbails in my Admin. I used the example in the documentation (see below) but with no luck.

from gallery.models import Photo
from django.contrib import admin
from sorl.thumbnail.admin import AdminImageMixin

class PhotoAdmin(AdminImageMixin, admin.ModelAdmin):
    pass

admin.site.register(Photo, PhotoAdmin)

What am I doing wrong?

link|improve this question

25% accept rate
feedback

1 Answer

I do something very similar and it works for me. However, I use a slightly different method, importing my admin from a utils/admin.py in my site base instead, allowing easy inheritance across my models with other apps such as django-reversion, django-guardian, and django-markitup.

gallery/admin.py:

#from django.contrib import admin
from utils import admin
from gallery.models import Photo

class PhotoAdmin(admin.ModelAdmin):
    #your customizations

admin.site.register(Photo,PhotoAdmin)

utils/admin.py:

from django.contrib.admin import *
from django.db import models
from sorl.thumbnail.admin import AdminImageMixin

class ModelAdmin(AdminImageMixin, ModelAdmin):
    pass
link|improve this answer
Thanx for your answer. I am going to try this – Hekje Feb 2 at 19:47
feedback

Your Answer

 
or
required, but never shown

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