Django bulk admin enables you to bulk add, bulk edit, bulk upload and bulk select in django admin.
Project description
django-bulk-admin
Django bulk admin enables you to bulk add, bulk edit, bulk upload and bulk select in django admin.
View the screenshots below to get an idea of how django bulk admin does look like.
Requires Django >= 1.7.
Quick start
Install with pip:
$ pip install django-bulk-admin
Add “bulk_admin” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'bulk_admin', )
Inherit from bulk_admin.BulkModelAdmin instead of django.contrib.admin.ModelAdmin:
from django.contrib import admin from example_project import models import bulk_admin @admin.register(models.Image) class ImageAdmin(bulk_admin.BulkModelAdmin): search_fields = ('title',) @admin.register(models.Project) class ProjectAdmin(bulk_admin.BulkModelAdmin): raw_id_fields = ('images',)
Enjoy!
Bulk Upload
By default, django bulk admin provides a bulk upload button for each field type that has an upload_to attribute, like FileField or ImageField. If you want to customize the provided buttons (or disable bulk upload at all), set bulk_upload_fields in the BulkAdminModel:
@admin.register(models.Image) class ImageAdmin(bulk_admin.BulkModelAdmin): bulk_upload_fields = ()
When files are bulk uploaded, a model instance is created and saved for each file. If there are required fields, django bulk admin tries to set unique values (uuid) which can be edited by the uploading user in the next step. For setting custom values or to support non string fields that are required, override generate_data_for_file:
@admin.register(models.Image) class ImageAdmin(bulk_admin.BulkModelAdmin): def generate_data_for_file(self, request, field_name, field_file, index): if field_name == 'data': return dict(title=field_file.name) return super(ImageAdmin, self).generate_data_for_file(request, field_name, file, index)
Caveats
No admin logs are generated for bulk operations
Customize Inline
Django bulk admin provides two inlines that are similar to those provided by django admin:
bulk_admin.TabularBulkInlineModelAdmin (which is the default)
bulk_admin.StackedBulkInlineModelAdmin
You can configure them exactly like django admin one’s:
from django.contrib import admin from example_project import models import bulk_admin class ProjectInline(bulk_admin.StackedBulkInlineModelAdmin): model = models.Project raw_id_fields = ('images',) @admin.register(models.Image) class ImageAdmin(bulk_admin.BulkModelAdmin): search_fields = ('title',) @admin.register(models.Project) class ProjectAdmin(bulk_admin.BulkModelAdmin): raw_id_fields = ('images',) bulk_inline = ProjectInline
Screenshots
Bulk add
Bulk edit
Bulk upload
Bulk select
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-bulk-admin-0.1.1.tar.gz
.
File metadata
- Download URL: django-bulk-admin-0.1.1.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec2c08d128a4b110bacc06f67a8906c73fe1ef2a84e216b1f5b9fd4efae6a3f2 |
|
MD5 | 5f8d1dcd765e3f7c9157ae608fd8f660 |
|
BLAKE2b-256 | 8cbb9a488bae4481a85bed43953c17f823f03d628945b98cc3911dd1fd646fec |