Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django Forms Inlines and Media Formsets

Maxim Maslin
Maxim Maslin
4,214 Points

Formsets

Kenneth explains HOW to implement formsets. Not explained is why we ever should care about using it.

1 Answer

David Lin
David Lin
35,864 Points

At the very beginning of the video (as well as the end of the last video), he did motivate the usage of formsets. In this particular example, it's tedious to have to add answers one by one to a question. Formsets helps make the process of adding answers much smoother, since you can add them all at once in a single shot.