ImageField for admin with thumbnail

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
from django import forms
from django.utils.safestring import mark_safe

class AdminImageWidget(forms.FileInput):
    """
    A ImageField Widget for admin that shows a thumbnail.
    """

    def __init__(self, attrs={}):
        super(AdminImageWidget, self).__init__(attrs)

    def render(self, name, value, attrs=None):
        output = []
        if value and hasattr(value, "url"):
            output.append(('<a target="_blank" href="%s">'
                           '<img src="%s" style="height: 28px;" /></a> '
                           % (value.url, value.url)))
        output.append(super(AdminImageWidget, self).render(name, value, attrs))
        return mark_safe(u''.join(output))

More like this

  1. django easy_thumbnails AdminImageWidget by livskiy 7 months, 3 weeks ago
  2. BRPhoneNumberWidget by semente 1 year, 8 months ago
  3. Admin Image Widget by baumer1122 4 years, 9 months ago
  4. Image Preview on ImageField in admin by fyaconiello 2 years, 1 month ago
  5. StaticField for non-changing text data in forms by V 4 years ago

Comments

(Forgotten your password?)