mb52089
mb52089

Reputation: 872

django dynamic form creation

Django and programming newbie with a question about how to build a dynamic form. How do I create a form that allows the user to edit all instances of an object from a single form instead of just one instance at a time on the form?

Upvotes: 0

Views: 526

Answers (1)

Brandon Taylor
Brandon Taylor

Reputation: 34593

Take a look at Django's formsets: https://docs.djangoproject.com/en/1.3/topics/forms/formsets/

Upvotes: 3

Related Questions