Skip to content

Commit

Permalink
Make workshop ticket integers optional
Browse files Browse the repository at this point in the history
  • Loading branch information
SamLR committed May 24, 2024
1 parent 7d0e0b3 commit 8bca0fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cfp_review/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ def update_proposal(self, proposal):
class UpdateWorkshopForm(UpdateProposalForm):
attendees = StringField("Attendees", [DataRequired()])
requires_ticket = BooleanField("Requires ticket")
tickets = IntegerField("Total tickets")
non_lottery_tickets = IntegerField("Non lottery tickets")
tickets = IntegerField("Total tickets", [Optional()])
non_lottery_tickets = IntegerField("Non lottery tickets", [Optional()])
cost = StringField("Cost per attendee")
participant_equipment = StringField("Attendee equipment")
age_range = StringField("Age range")
Expand Down

0 comments on commit 8bca0fa

Please sign in to comment.