From 19b526e8a3dd35d9f841e980a8a86e696504e868 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 18 Dec 2023 13:11:12 +0000 Subject: [PATCH] . --- atlas/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atlas/forms.py b/atlas/forms.py index 6d13f348..241547d3 100755 --- a/atlas/forms.py +++ b/atlas/forms.py @@ -228,7 +228,7 @@ class SeriesForm(ModelForm): class Meta: model = Series - exclude = ["author", "series_instance_uid", "dicom_tags_ohif", "replaced", "image_md5_hash", "is_dicom"] + exclude = ["author", "series_instance_uid"] widgets = { "examination": autocomplete.ModelSelect2( @@ -444,7 +444,7 @@ CaseCollectionCaseFormSet = inlineformset_factory( SeriesImageFormSet = inlineformset_factory( Series, SeriesImage, - exclude=[], + exclude=["dicom_tags_ohif", "replaced", "image_md5_hash", "is_dicom"], can_delete=True, extra=0, max_num=2000,