summaryrefslogtreecommitdiff
path: root/tbc/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'tbc/forms.py')
-rw-r--r--tbc/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/forms.py b/tbc/forms.py
index b55bc5d..c187a9a 100644
--- a/tbc/forms.py
+++ b/tbc/forms.py
@@ -51,7 +51,7 @@ class BookForm(forms.ModelForm):
self.fields['no_chapters'].label = "Number of Chapter"
class Meta:
model = Book
- exclude = ('contributor')
+ exclude = ('contributor', 'approved')
widgets = {
'title':forms.TextInput(attrs={'placeholder':'Title of the Book'}),
'author':forms.TextInput(attrs={'placeholder':'Author of the Book'}),