[Answer]-Conditional field and formsets

1👍

null=True and blank=True in the model make the field not required. required=False in the modelfield will make the form valid even if nothing is put into it. You can add a clean_field def to the form to customize the conditional field.

Leave a comment