Skip to content

Commit

Permalink
location not needed for individual registration
Browse files Browse the repository at this point in the history
  • Loading branch information
dlareau committed Oct 20, 2015
1 parent 8d1eca6 commit c57a06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huntserver/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RegistrationForm(forms.Form):
username = forms.CharField(label='Team Username', required=False)
password = forms.CharField(label='Team Password', widget=forms.PasswordInput())
confirm_password = forms.CharField(label='Confirm Password', required=False, widget=forms.PasswordInput())
location = forms.ChoiceField(label="Do you want to be provided a room on campus close to the hunt?", choices=([(1, "Yes"), (2, "No, we have a room"), (3, "No, we are a remote team")]))
location = forms.ChoiceField(label="Do you want to be provided a room on campus close to the hunt?", choices=([(1, "Yes"), (2, "No, we have a room"), (3, "No, we are a remote team")]), required=False)
first_name = forms.CharField(label='First Name')
last_name = forms.CharField(label='Last Name')
phone = forms.CharField(label='Phone Number', required=False)
Expand Down

0 comments on commit c57a06a

Please sign in to comment.