X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/84921deab3e04b4e2501f92ba5f2923e4cc2d155..10f48e60a7f7499a6602098fc44298e05d05af50:/apps/explorer/forms.py diff --git a/apps/explorer/forms.py b/apps/explorer/forms.py index 4946be69..910db542 100644 --- a/apps/explorer/forms.py +++ b/apps/explorer/forms.py @@ -67,9 +67,9 @@ class DublinCoreForm(forms.Form): created_at = forms.DateField() released_to_public_domain_at = forms.DateField() editors = PersonListField(widget=forms.Textarea, required=False) - translator = PersonField(required=False) - technical_editor = PersonField(required=False) - publisher = PersonField() + translators = PersonListField(widget=forms.Textarea, required=False) + technical_editors = PersonListField(widget=forms.Textarea, required=False) + publisher = forms.CharField() source_name = forms.CharField(widget=forms.Textarea) source_url = forms.URLField(verify_exists=False) url = forms.URLField(verify_exists=False)