raise forms.ValidationError(u"Proszę podać dane przynajmniej jednego ucznia.")
class WTEMForm(ContactForm):
+ disabled = True
+ disabled_template = 'wtem/disabled_contact_form.html'
form_tag = "wtem"
form_title = u"WTEM - rejestracja uczestników"
submit_label = u"Wyślij zgłoszenie"
zgoda_regulamin = forms.BooleanField(
label=u'Znam i akceptuję regulamin Wielkiego Turnieju Edukacji Medialnej.',
- help_text=u'Zobacz <a href="/media/chunks/attachment/WTEM_regulamin_1.pdf">regulamin Wielkiego Turnieju Edukacji Medialnej</a>.'
+ help_text=u'Zobacz <a href="/media/chunks/attachment/WTEM_regulamin_TmXC5VU.pdf">regulamin Wielkiego Turnieju Edukacji Medialnej</a>.'
)
+ zgoda_dane = forms.BooleanField(
+ label=u'Wyrażam zgodę na przetwarzanie moich danych osobowych oraz danych osobowych moich podopiecznych, a także na publikację prac na wolnej licencji.',
+ help_text=u'Zobacz <a href="/media/chunks/attachment/Oswiadczenie_o_danych_osobowych.pdf">pełną treść oświadczenia</a>.'
+ )
+
potw_uczniowie = forms.BooleanField(
label=u'Potwierdzam, że zgłoszeni Uczestnicy/Uczestniczki w chwili rejestracji są uczniami/uczennicami szkoły ponadgimnazjalnej.',
)
required=False
)
+ extract_types = (dict(slug='extended', label=_('extended')),)
+
+ @staticmethod
+ def get_extract_fields(contact, extract_type_slug):
+ fields = contact.body.keys()
+ fields.pop(fields.index('student'))
+ fields.extend(['contact', 'student_first_name', 'student_last_name', 'student_email'])
+ return fields
+
+ @staticmethod
+ def get_extract_records(keys, contact, extract_type_slug):
+ toret = [dict()]
+ for field_name in keys:
+ if field_name.startswith('student_'):
+ continue
+ if field_name == 'contact':
+ val = contact.contact
+ else:
+ val = contact.body[field_name]
+ toret[0][field_name] = val
+
+ current = toret[0]
+ for student in contact.body['student']:
+ for attr in ('first_name', 'last_name', 'email'):
+ current['student_' + attr] = student[attr]
+ if not current in toret:
+ toret.append(current)
+ current = dict()
+ return toret
+
+
class MILForm(ContactForm):
form_tag = 'mil'
- from_title = 'Mil'
+ form_title = _('Share your thoughts on the "Media and information literacy competencies catalogue"')
submit_label = _('Submit')
base_template = 'base_mil.html'
+ site_name = site_domain = 'katalog.nowoczesnapolska.org.pl'
name = forms.CharField(label = _('Name and Surname'), max_length = 255)
contact = forms.EmailField(label = _('E-mail'), max_length = 255)
question_stages = forms.CharField(
label = _('What do you think about the proposed educational stages classification?'),
widget = forms.Textarea,
- max_length = 255
+ max_length = 255,
+ required = False
)
question_fields = forms.CharField(
label = _('What do you think about the proposed thematic fields?'),
widget = forms.Textarea,
- max_length = 255
+ max_length = 255,
+ required = False
)
question_left_out = forms.CharField(
label = _('What important areas of media and information literacy have been left out?'),
widget = forms.Textarea,
- max_length = 255
+ max_length = 255,
+ required = False
)
other = forms.CharField(
label = _('Other suggestions and comments'),
widget = forms.Textarea,
- max_length = 255
+ max_length = 255,
+ required = False
)