X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5913c54d19b8f6775633176032161d49f9b2f1aa..ae2a8df21e1038038cf898eb5a9d09b9ecc33f8f:/src/wiki/forms.py diff --git a/src/wiki/forms.py b/src/wiki/forms.py index 3ef3ed14..46194677 100644 --- a/src/wiki/forms.py +++ b/src/wiki/forms.py @@ -1,12 +1,10 @@ -# -*- coding: utf-8 -*- -# # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from django import forms -from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import gettext_lazy as _ -from catalogue.models import Chunk +from documents.models import Chunk class DocumentPubmarkForm(forms.Form): @@ -67,7 +65,7 @@ class DocumentTextSaveForm(forms.Form): def __init__(self, *args, **kwargs): user = kwargs.pop('user') r = super(DocumentTextSaveForm, self).__init__(*args, **kwargs) - if user and user.is_authenticated(): + if user and user.is_authenticated: self.fields['author_name'].required = False self.fields['author_email'].required = False return r