X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/dea6c21568101405287d143a86856d7f8d013a5b..3f657610470d6dd30fbcf811e3b3fa22deb5aca0:/prawokultury/contact_forms.py diff --git a/prawokultury/contact_forms.py b/prawokultury/contact_forms.py index 2f7c0dd..2996d3f 100644 --- a/prawokultury/contact_forms.py +++ b/prawokultury/contact_forms.py @@ -21,8 +21,8 @@ mark_safe_lazy = lazy(mark_safe, unicode) 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') @@ -36,9 +36,10 @@ class RegistrationForm(ContactForm): 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:'), @@ -51,8 +52,8 @@ class RegistrationForm(ContactForm): 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 @@ -130,13 +131,6 @@ class RegistrationForm(ContactForm): '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(_( @@ -191,7 +185,7 @@ class RegistrationForm(ContactForm): '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 = ( @@ -295,8 +289,8 @@ def workshop_field(label): 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'