Mark the phone field optional for the CoderDojo registration form

This commit is contained in:
Yannik Rödel 2023-01-27 15:15:31 +01:00
parent dfb62777c1
commit c87faa003f

View file

@ -233,7 +233,7 @@ match request_uri:
form_group = "CoderDojo" form_group = "CoderDojo"
ticket_details["Anmelde-Typ"] = get_form_value("mode") ticket_details["Anmelde-Typ"] = get_form_value("mode")
ticket_details["Teilnehmenden-Name"] = get_form_value("participantname", "-") ticket_details["Teilnehmenden-Name"] = get_form_value("participantname", "-")
ticket_details["Telefonnummer"] = get_form_value("contactphone") ticket_details["Telefonnummer"] = get_form_value("contactphone", "-")
ticket_details["Fotos?"] = get_form_value("photos") ticket_details["Fotos?"] = get_form_value("photos")
case _: case _: