Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create multiple objects in django admin at once

For example, I have a Post model:

Class Post(models.Model):
    title = models.Charfield(max_length=200)
    # other fields

I wonder is there a way to create multiple posts at once in admin. In other words, I need a formset instead of single form on post creation page.

like image 397
chem1st Avatar asked Sep 14 '15 11:09

chem1st


1 Answers

I've heard recently about a django app that exactly does this job. It's called django-bulk-admin and enables bulk add/update in the admin.

like image 74
Agate Avatar answered Oct 21 '22 16:10

Agate