Skip to main content

Thumbnails for ImageFields in django admin.

Project description

django_admin_thumbnail

This is a package developed to help you with ImageField visualization in your ModelAdmin. It automatically creates user friendly thumbnail for any ImageField you choose to put in your list_display.

All you have to do is to switch from ModelAdmin to ThumbAdmin subclass. It’s super easy to use:

Usage

Insert admin_thumbnail to the end of your INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    ...
    'admin_thumbnail',
    ...
)

Now, your ModelAdmin must look like this:

from models import ModelExample
from admin_thumbnail import thumb_admin
from django.contrib import admin

class ModelExampleAdmin(thumb_admin.ThumbAdmin):
    list_display = ('a_image_field',)

admin.register(ModelExample, ModelExampleAdmin)

Yes! It’s THAT simple!

Requirements

Installation

Install using pip:

pip install django-admin-thumbnail

Check This Out

  1. GitHub Repository

  2. Owner website

  3. PyPi package

Contact

If you have any comments, ideas questions, feedback, etcetera, email me and we’ll be in touch. I’m flavio@vieiracaetano.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_admin_thumbnail-0.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page