X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/5fd8cacf1c73a8670d45406b7214a59eedaff07f..736d94f6ac63f205be2967f013a15c457032fc2f:/edumed/contact_forms.py?ds=sidebyside
diff --git a/edumed/contact_forms.py b/edumed/contact_forms.py
index f688e5b..507c6d1 100644
--- a/edumed/contact_forms.py
+++ b/edumed/contact_forms.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
from contact.forms import ContactForm
+from django.utils.translation import ugettext_lazy as _
class RegistrationForm(ContactForm):
@@ -117,14 +118,52 @@ class WTEMForm(ContactForm):
zgoda_regulamin = forms.BooleanField(
label=u'Znam i akceptujÄ regulamin Wielkiego Turnieju Edukacji Medialnej.',
- help_text=u'Zobacz regulamin Wielkiego Turnieju Edukacji Medialnej.'
+ help_text=u'Zobacz regulamin Wielkiego Turnieju Edukacji Medialnej.'
)
potw_uczniowie = forms.BooleanField(
label=u'Potwierdzam, że zgÅoszeni Uczestnicy/Uczestniczki w chwili rejestracji sÄ
uczniami/uczennicami szkoÅy ponadgimnazjalnej.',
- #help_text=u'Zobacz regulamin Wielkiego Turnieju Edukacji Medialnej.'
)
zgoda_informacje = forms.BooleanField(
label=u'Wyrażam zgodÄ na otrzymywanie informacji od Fundacji Nowoczesna Polska zwiÄ
zanych z edukacjÄ
medialnÄ
.',
required=False
)
+class MILForm(ContactForm):
+ form_tag = '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)
+
+ institution = forms.CharField(label =_('Institution'), widget = forms.Textarea, max_length = 8192)
+
+ question_stages = forms.CharField(
+ label = _('What do you think about the proposed educational stages classification?'),
+ widget = forms.Textarea,
+ 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,
+ 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,
+ required = False
+ )
+
+ other = forms.CharField(
+ label = _('Other suggestions and comments'),
+ widget = forms.Textarea,
+ max_length = 255,
+ required = False
+ )