class RegistrationForm(ContactForm):
form_tag = 'register'
name = forms.CharField(label=_('Name'), max_length=128)
- organization = forms.CharField(label=_('Organization'), max_length=128)
- summary = forms.CharField(label=_('Summary'), widget=forms.Textarea)
- presentation = forms.FileField(label=_('Presentation'))
+ contact = forms.EmailField(label=_('E-mail'), max_length=128)
+ organization = forms.CharField(label=_('Organization'),
+ max_length=256, required=False)
+ presentation = forms.FileField(label=_('Presentation'),
+ required=False)
+ summary = forms.CharField(label=_('Summary'),
+ widget=forms.Textarea, required=False)