diff --git a/src/program/forms.py b/src/program/forms.py index 5bf7be07..fed70538 100644 --- a/src/program/forms.py +++ b/src/program/forms.py @@ -13,6 +13,11 @@ class SpeakerProposalForm(forms.ModelForm): The SpeakerProposalForm. Takes an EventType in __init__ and changes fields accordingly. """ + email = forms.EmailField( + required=False, + help_text="The email of the speaker (defaults to the logged in user if empty).", + ) + class Meta: model = SpeakerProposal fields = [