Mercurial > public > sg101
changeset 703:d7a0aaabc06c
Display thumbnail in user_photos admin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 14 Sep 2013 18:43:10 -0500 |
parents | 1fd0f88480bc |
children | 809d27b385f2 |
files | user_photos/admin.py |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/user_photos/admin.py Sat Sep 14 18:31:39 2013 -0500 +++ b/user_photos/admin.py Sat Sep 14 18:43:10 2013 -0500 @@ -3,11 +3,17 @@ from user_photos.models import Photo +IMG_TAG = '<img src="%s" alt="thumbnail" />' class PhotoAdmin(admin.ModelAdmin): date_hierarchy = 'upload_date' ordering = ['-upload_date'] raw_id_fields = ['user'] search_fields = ['user__username', 'user__email'] + list_display = ['__unicode__', 'thumbnail'] + + def thumbnail(self, obj): + return IMG_TAG % obj.thumb_url + thumbnail.allow_tags = True admin.site.register(Photo, PhotoAdmin)