summaryrefslogtreecommitdiff
path: root/chimere/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/forms.py')
-rw-r--r--chimere/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/chimere/forms.py b/chimere/forms.py
index 119047d..c15e208 100644
--- a/chimere/forms.py
+++ b/chimere/forms.py
@@ -376,7 +376,8 @@ class PictureFileForm(BaseFileForm):
_related_name = 'pictures'
class Meta:
model = PictureFile
- exclude = ('order', 'height', 'width')
+ exclude = ('order', 'height', 'width', 'thumbnailfile',
+ 'thumbnailfile_height', 'thumbnailfile_width')
PictureFileFormSet = formset_factory(PictureFileForm, can_delete=True)