from contact.forms import ContactForm
from contact.models import Contact
from django.utils.translation import ugettext_lazy as _
+from django.utils.safestring import mark_safe
+from migdal.models import Entry
class RegistrationForm(ContactForm):
super(RegistrationForm, self).__init__(*args, **kwargs)
self.started = getattr(settings, 'REGISTRATION_STARTED', False)
self.limit_reached = Contact.objects.filter(form_tag=self.save_as_tag).count() >= settings.REGISTRATION_LIMIT
+ 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
tracks = (
"licencji <a href=\"http://creativecommons.org/licenses/by-sa/3.0/deed.pl"
"\">CC BY-SA</a> oraz rozpowszechnianie wizerunku."
+#: contact_forms.py:48
+#, python-format
+msgid "I accept <a href=\"%s\">Terms and Conditions of CopyCamp</a>"
+msgstr "Akceptuję <a href=\"%s\">Regulamin CopyCampu</a>"
+
#: contact_forms.py:44
msgid "CopyArt"
msgstr "Prawo autorskie i sztuka"