Skip to content

Instantly share code, notes, and snippets.

@timoleinio
Created May 1, 2014 18:41
Show Gist options
  • Save timoleinio/fb180a935f5323c6644c to your computer and use it in GitHub Desktop.
Save timoleinio/fb180a935f5323c6644c to your computer and use it in GitHub Desktop.
class GroupingSampleForm(forms.Form):
username = forms.CharField()
email = forms.EmailField()
real_name = forms.CharField()
favorite_color = forms.CharField()
favorite_animal = forms.ChoiceField(
choices=(('cat', 'Cat'), ('dog', 'Dog')
))
favorite_food = forms.CharField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment