For example, I have a Post model:
Class Post(models.Model): title = models.Charfield(max_length=200) # other fields
I wonder if there is a way to create multiple posts at once in admin. In other words, I need a form, not one form on the page creation page.
source share