Re: CBV for Nested Formesets

2012-11-11 Thread Kevin
This example code and example is based on the tutorial provided in your URL. Formsets do not have a save_all() function by default. The provided save_all() does not return back any object, so you should provide a success_url or override the function get_success_url() in your class. You'll need

CBV for Nested Formesets

2012-11-09 Thread Lee Hinde
I'm looking at these two blog posts to help me figure out nested formsets: http://yergler.net/blog/2009/09/27/nested-formsets-with-django/ http://andreipetre.tumblr.com/post/26203496689/nested-formsets-with-django The example uses a function view and I was interested using class-based views, but