class RegistrationForm(ContactForm):
form_tag = 'register'
- save_as_tag = '2017'
- conference_name = u'CopyCamp 2017'
+ save_as_tag = '2018'
+ conference_name = u'CopyCamp 2018'
notify_on_register = False
form_title = _('Registration')
last_name = forms.CharField(label=_('Last name'), max_length=128)
contact = forms.EmailField(label=_('E-mail'), max_length=128)
organization = forms.CharField(label=_('Organization'), max_length=256, required=False)
- country = forms.ChoiceField(label=_('Country of residence'), choices=zip(COUNTRIES, COUNTRIES))
+ country = forms.ChoiceField(
+ label=_('Country of residence'), choices=[('', '--------')] + zip(COUNTRIES, COUNTRIES), required=False)
travel_grant = forms.BooleanField(
- label=_('I require financial assistance to attend CopyCamp 2017.'), required=False)
+ label=_('I require financial assistance to attend CopyCamp 2018.'), required=False)
travel_grant_motivation = forms.CharField(
label=_('Please write us about yourself and why you want to come to CopyCamp. '
'This information will help us evaluate your travel grant application:'),
label=_("I'm planning to show up on"),
choices=[
('both', _('Both days of the conference')),
- ('only-28th', _('September 28th only')),
- ('only-29th', _('September 29th only')),
+ ('only-28th', _('October 5th only')),
+ ('only-29th', _('October 6th only')),
], widget=forms.RadioSelect())
# ankieta
'and similar activities of the Modern Poland Foundation'),
required=False
)
- agree_data = forms.BooleanField(
- label=_('Permission for data processing'),
- help_text=_(
- u'I hereby grant Modern Poland Foundation (Fundacja Nowoczesna Polska, ul. MarszaĆkowska 84/92, '
- u'00-514 Warszawa) permission to process my personal data (name, e-mail address) for purposes '
- u'of registration for CopyCamp conference.')
- )
agree_license = forms.BooleanField(
label=_('Permission for publication'),
help_text=mark_safe_lazy(_(
'areas', 'areas_other', 'source', 'source_other', 'motivation', 'motivation_other')]
def agreement_fields(self):
- return [self[name] for name in ('agree_mailing', 'agree_data', 'agree_license', 'agree_toc')]
+ return [self[name] for name in ('agree_mailing', 'agree_license', 'agree_toc')]
tracks = (
class WorkshopForm(ContactForm):
form_tag = 'workshops'
- save_as_tag = 'workshops-2017'
- conference_name = u'CopyCamp 2017'
+ save_as_tag = 'workshops-2018'
+ conference_name = u'CopyCamp 2018'
form_title = _('Workshop')
notify_on_register = False
mailing_field = 'agree_mailing'