Skip to main content

Batch Uploading Mechanism for Django Admin

Project description

# django-batch-uploader
Django batch uploading

#Features

1. Users can batch upload files / bulk upload files / upload
multiple files at one -- however you prefer to phrase it!

2. Users can specify default values to apply in bulk. For example, if
you're a photographer uploading multiple images from a single shoot, you may
want to be able to tag all the images to a single shoot.

3. Users can individually edit specific fields. For example, if
you're a photographer uploading multiple images from a single shoot,
you may want to add titles when you first upload them so you don't
have to go back and update them individually.

#Compatibility / Requirements

1. Django (last tested with 1.8.2)
2. django-grappelli (last tested with 2.6.5)
3. Chrome, Firefox, Safari, IE10+ (Essentially this list: http://caniuse.com/#feat=input-file-multiple)

#Installation

pip install django-batch-uploader

##settings.py

INSTALLED_APPS = (
...
'django_batch_uploader',
...
)

##views.py

from django_batch_uploader.views import AdminBatchUploadView

class ImageBatchView(AdminBatchUploadView):

model = Image

#Media file name
media_file_name = 'image'

#Which fields can be applied in bulk?
default_fields = ['credit', 'admin_description', 'creator', 'tags']

#Which fields can be applied individually?
detail_fields = ['title', 'alt', 'caption']

default_values = {}


##urls.py

....
url( r'admin/media/images/batch/$', ImageBatchView.as_view(), name="admin_image_batch_view"),
....


##admin.py

from django_batch_uploader.admin import BaseBatchUploadAdmin

class BaseImageAdmin(BaseBatchUploadAdmin):

batch_url_name = "admin_image_batch_view"

#Screenshots

##Bulk upload button in changelist
![Changelist View](https://raw.github.com/ninapavlich/django-batch-uploader/master/docs/screenshots/changelist_view.png)

##Select files and specify individual values
![Individual Fields](https://raw.github.com/ninapavlich/django-batch-uploader/master/docs/screenshots/specify_individual_fields.png)

##Specify defaults to bulk-apply
![Defaults Form](https://raw.github.com/ninapavlich/django-batch-uploader/master/docs/screenshots/specify_bulk_defaults.png)

##Upload in progress
![Progress](https://raw.github.com/ninapavlich/django-batch-uploader/master/docs/screenshots/see_progress.png)

##Upload successful
![Progress](https://raw.github.com/ninapavlich/django-batch-uploader/master/docs/screenshots/results.png)

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_batch_uploader-0.14.tar.gz (17.5 kB view details)

Uploaded Source

File details

Details for the file django_batch_uploader-0.14.tar.gz.

File metadata

File hashes

Hashes for django_batch_uploader-0.14.tar.gz
Algorithm Hash digest
SHA256 1b61949dd749fa09c524a95b8348c5ecc1c18b412d54365fdf96a2844ca787c5
MD5 14c168bdbbb322ead82f67e40bfac658
BLAKE2b-256 4430678227686eccb1a131fe086d35621e6a6c9d74ddabe5e1b34d5949721bdb

See more details on using hashes here.

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