Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created July 26, 2013 00:49
Show Gist options
  • Select an option

  • Save renatooliveira/6085160 to your computer and use it in GitHub Desktop.

Select an option

Save renatooliveira/6085160 to your computer and use it in GitHub Desktop.
First formset required
class PhoneFormSet(BaseModelFormSet):
def __init__(self, *args, **kwargs):
super(PhoneFormSet, self).__init__(*args, **kwargs)
self.forms[0].empty_permitted = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment