Skip to content
Merged

Fix12 #415

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions applications/forms/volunteer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class VolunteerApplicationForm(_BaseApplicationForm):
)
under_age = forms.TypedChoiceField(
required=True,
label="¿Serás mayor de edad en la fecha del evento?",
label="¿Cuántos años tendrás en la fecha del evento?",
initial=False,
coerce=lambda x: x == "True",
choices=((False, ""), (True, "No")),
choices=((False, "18 o más"), (True, "Entre 14 (incluido) y 18")),
widget=forms.RadioSelect,
)
studies_and_course = forms.CharField(
Expand Down