django-admin-thumbnails icon indicating copy to clipboard operation
django-admin-thumbnails copied to clipboard

A Django app to assist in adding thumbnails for your model's image fields to admin list views and forms in a reasonably DRY manner.

Results 1 django-admin-thumbnails issues
Sort by recently updated
recently updated
newest added

This feature will make life much simpler in e-commerce projects, where we need to create some constructions like: ``` class Image(models.Model): image = models.ImageField() class Product(models.Model): name = models.CharField() class...