From ad5606efce70154ca830ea428193f04f0c3f894e Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Tue, 20 Feb 2018 09:50:32 +0100 Subject: [PATCH] Fix exclude_fields incomplete --- journals/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/journals/forms.py b/journals/forms.py index 3f662b6de..55d0cb2bc 100644 --- a/journals/forms.py +++ b/journals/forms.py @@ -24,9 +24,9 @@ class InitiatePublicationForm(forms.Form): class ValidatePublicationForm(forms.ModelForm): class Meta: model = Publication - exclude = ['authors', 'authors_claims', 'authors_false_claims', - 'metadata', 'metadata_xml', - 'latest_activity'] + exclude = ['authors_claims', 'authors_false_claims', + 'metadata', 'metadata_xml', 'authors_registered', + 'authors_unregistered', 'latest_activity'] class UnregisteredAuthorForm(forms.ModelForm): -- GitLab