-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability accessibility and photo questions #493
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just let the autoformatter handle this file, sorry. I'll highlight all relevant lines
@@ -242,6 +242,13 @@ def __init__(self, *args, **kwargs): | |||
} | |||
|
|||
super().__init__(*args, **kwargs) | |||
|
|||
photo_agreement = "Do you grant permission for TAMUhack to use your name, likeness, voice, and any photographs, video recordings, or audio recordings taken during the event 'TAMUhack 2025' for promotional and media purposes, including but not limited to publications, websites, social media, and press releases?" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
relevant
@@ -312,8 +316,10 @@ class Meta: | |||
"agree_to_coc": forms.CheckboxInput, | |||
"agree_to_mlh_stuff": forms.CheckboxInput, | |||
"signup_to_mlh_newsletter": forms.CheckboxInput, | |||
"agree_to_photos": forms.CheckboxInput, | |||
"accessibility_requirements": forms.CheckboxInput, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
relevant
@@ -358,6 +364,8 @@ class Meta: | |||
"emergency_contact_phone", | |||
"emergency_contact_email", | |||
"notes", | |||
"agree_to_photos", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
relevant
Sorry for comment spam, let me know if you want me to change the order of things |
Good stuff! Thanks, Eric! |
Last thing, could you migrate the prod database to have these new changes? |
This should add the requirements to the form, admin dashboard, and internal database models