Django admin: 'add' page, want to add multiple objects on one page -
class country(models.model): name = fields.charfield()
in admin, want display multiple forms country can add multiple different country objects @ once. don't know start? please help, thanks.
i can't think of way inside admin. admin ready-made interface editing single objects (and, optionally, multiple objects related object), doesn't give way edit multiple objects @ once.
if need this, write own view using formset.
Comments
Post a Comment