- label = _('Please select one thematic track'),
- choices=[(t,t) for t in tracks], widget=forms.RadioSelect())
-
- bio = forms.CharField(label=_('Short biographical note (max. 500 characters)'),
- widget=forms.Textarea, max_length=500, required=True)
+ label=_('Please select one thematic track'),
+ choices=[(t, t) for t in tracks], widget=forms.RadioSelect())
+
+ bio = forms.CharField(label=mark_safe_lazy(
+ _('Short biographical note in Polish (max. 500 characters, fill <strong>at least</strong> one bio)')),
+ widget=forms.Textarea, max_length=500, required=False)
+ bio_en = forms.CharField(label=_('Short biographical note in English (max. 500 characters)'), widget=forms.Textarea,
+ max_length=500, required=False)