diff options
-rw-r--r-- | tbc/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/forms.py b/tbc/forms.py index cf99afc..3fb9932 100644 --- a/tbc/forms.py +++ b/tbc/forms.py @@ -52,7 +52,7 @@ class BookForm(forms.ModelForm): self.fields['no_chapters'].label = "Number of Chapter" class Meta: model = Book - exclude = ('contributor', 'approved') + exclude = ('contributor', 'approved', 'reviewer') widgets = { 'title':forms.TextInput(attrs={'placeholder':'Title of the Book'}), 'author':forms.TextInput(attrs={'placeholder':'Author of the Book'}), |