In a modelformset with 3 copies of the form, how do i specify that only the first set is required but the rest can be blank or null?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can subclass
Then you can use the
|
|||
|
|
|
I've used something like this for inline formsets:
The form fields must be by default set to |
|||
|
|
|
Matthew Flanagan has a package of things for Django, and in that package is the RequireOneFormset class. You can easily extend this class to require 3 forms instead of one. Hope that helps you out. |
|||
|
|

