summaryrefslogtreecommitdiff
path: root/app/blog/widgets.py
blob: 92956413beb689aba270287a07b86b36f570fec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os
from django.contrib.admin.widgets import AdminFileWidget
from django.utils.safestring import mark_safe
from django.conf import settings


def thumbnail(image_path):
    absolute_url = os.path.join(settings.IMAGES_URL, image_path[7:])
    print(absolute_url)
    return '<img style="max-width: 400px" src="%s" alt="%s" />' % (absolute_url, image_path)


class AdminImageWidget(AdminFileWidget):
    """
    A FileField Widget that displays an image instead of a file path
    if the current file is an image.
    """
    def render(self, name, value, attrs=None):
        output = []
        file_name = str(value)
        help_text = ''
        if file_name:
            file_path = '%s' % (file_name)
            if attrs['id'] == 'id_thumbnail':
                help_text = '160 wide'
            if attrs['id'] == 'id_image':
                help_text = '205px high'
            output.append('<span>%s</span><a target="_blank" href="%s">%s</a>' % (help_text, file_path, thumbnail(file_name)))

        output.append(super(AdminFileWidget, self).render(name, value, attrs))
        return mark_safe(''.join(output))