+ max_length=256, required=False)
+
+
+def workshop_field(label):
+ return forms.BooleanField(label=_(label), required=False)
+
+
+class WorkshopForm(ContactForm):
+ form_tag = 'workshops'
+ save_as_tag = 'workshops-2017'
+ conference_name = u'CopyCamp 2017'
+ form_title = _('Workshop')
+ notify_on_register = False
+
+ first_name = forms.CharField(label=_('First name'), max_length=128)
+ 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.CharField(label=_('Country'), max_length=128)
+
+ _header = HeaderField(
+ label=mark_safe_lazy(_("<h3>I'll take a part in workshops</h3>")),
+ help_text=_('Only workshops with any spots left are visible here.'))
+
+ _h1 = HeaderField(label=mark_safe_lazy(_("<strong>Thursday, September 28th, 10 a.m.–12 noon</strong>")))
+
+ w_mileszyk = workshop_field(
+ u'Natalia Mileszyk, Dimitar Dimitrov, Diego Naranjo: School of Rock(ing) Copyright: United to #fixcopyright')
+ w_wang = workshop_field(
+ u'Jacob Riddersholm Wang, Pernille Feldt, Martin Appelt: Heritage gone digital - beyond legal rights')
+
+ _h2 = HeaderField(label=mark_safe_lazy(_("<strong>Thursday, September 28th, 12 noon–2 p.m.</strong>")))
+
+ w_vanderwaal = workshop_field(u'Sander van der Waal, Danny Lämmerhirt: Tackling open license proliferation')
+
+ _h2a = HeaderField(label=mark_safe_lazy(_("<strong>Friday, September 29th, 9 a.m.–11 noon</strong>")))
+
+ w_nobre = workshop_field(u'Teresa Nobre, Paul Keller, Sean Flynn: Researching the Impact of Copyright User Rights')
+ w_nobre_question = forms.CharField(
+ label=mark_safe_lazy(_(
+ u'Please describe the most important recent changes to copyright user rights in your national law. '
+ u'(max 1500 characters)')),
+ max_length=1500, widget=forms.Textarea, required=False)
+
+ _h3 = HeaderField(label=mark_safe_lazy(_("<strong>Friday, September 29th, 10 a.m.–12 noon</strong>")))
+
+ w_youtube = workshop_field(
+ u'Kiki Ganzemüller: YouTube Songwriter Workshop: Rights Management & Building a Presence on YouTube')
+
+ _h4 = HeaderField(label=mark_safe_lazy(_("<strong>Friday, September 29th, 12 noon–2 p.m.</strong>")))
+
+ w_murray = workshop_field(
+ u'Peter Murray-Rust: Wikidata, ContentMine and the automatic liberation of factual data: '
+ u'(The Right to Read is the Right To Mine)') # 30
+
+ w_zimmermann = workshop_field(u'Jeremie Zimmermann: Hackers ethics and peer-to-peer philosophy in care')
+
+ _header_1 = HeaderField(label='')
+ _header_2 = HeaderField(label='')
+
+ start_workshops = ('mileszyk', 'wang', 'vanderwaal', 'nobre', 'youtube', 'murray', 'zimmermann')
+
+ slots = (
+ ('_h1', 'mileszyk', 'wang'),
+ ('_h2', 'vanderwaal'),
+ ('_h2a', 'nobre', '_h3', 'youtube'),
+ ('_h4', 'murray', 'zimmermann'),
+ )
+
+ limits = {
+ 'mileszyk': 25,
+ 'wang': 25,
+ 'vanderwaal': 25,
+ 'nobre': 25,
+ 'youtube': 40,
+ 'murray': 35,
+ 'zimmermann': 35,
+ }
+
+ agree_mailing = forms.BooleanField(
+ label=_('I am interested in receiving information about the Modern Poland Foundation\'s activities by e-mail'),
+ 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 of '
+ u'registration for CopyCamp conference.'))
+ agree_license = forms.BooleanField(
+ label=_('Permission for publication'),
+ help_text=mark_safe_lazy(_(
+ u'I agree to having materials, recorded during the conference, released under the terms of '
+ u'<a href="http://creativecommons.org/licenses/by-sa/3.0/deed">CC\u00a0BY-SA</a> '
+ u'license and to publishing my image.')),
+ required=False)
+
+ def __init__(self, *args, **kwargs):
+ super(WorkshopForm, self).__init__(*args, **kwargs)
+ try:
+ url = Entry.objects.get(slug_pl='regulamin').get_absolute_url()
+ self.fields['agree_toc'] = forms.BooleanField(
+ required=True,
+ label=mark_safe(_('I accept <a href="%s">Terms and Conditions of CopyCamp</a>') % url)
+ )
+ except Entry.DoesNotExist:
+ pass
+ counts = {k: 0 for k in self.start_workshops}
+ for contact in Contact.objects.filter(form_tag=self.save_as_tag):
+ for workshop in self.start_workshops:
+ if contact.body.get('w_%s' % workshop, False):
+ counts[workshop] += 1
+ if workshop == 'youtube' and counts[workshop] == 30:
+ send_mail(u'Warsztaty YouTube', u'Przekroczono limit 30 osób na warsztaty YouTube',
+ 'no-reply@copycamp.pl',
+ ['krzysztof.siewicz@nowoczesnapolska.org.pl'],
+ fail_silently=True)
+
+ some_full = False
+ for k, v in counts.items():
+ if v >= self.limits[k]:
+ some_full = True
+ if 'w_%s' % k in self.fields:
+ del self.fields['w_%s' % k]
+ if not some_full:
+ self.fields['_header'].help_text = None