diff --git a/helpers/images.py b/helpers/images.py
index 8057ae03..6232640a 100644
--- a/helpers/images.py
+++ b/helpers/images.py
@@ -110,4 +110,4 @@ def get_dicom_order(path):
for i in slices:
print(map[i.SliceLocation])
-get_dicom_order("/home/ross/Downloads/DICOM HEAD/STD4/SER1/*.dcm")
\ No newline at end of file
+#get_dicom_order("/home/ross/Downloads/DICOM HEAD/STD4/SER1/*.dcm")
\ No newline at end of file
diff --git a/longs/templates/longs/longseries_form.html b/longs/templates/longs/longseries_form.html
index 8454bae3..9976c107 100755
--- a/longs/templates/longs/longseries_form.html
+++ b/longs/templates/longs/longseries_form.html
@@ -323,7 +323,7 @@ This form will create a image set that can be associated with a long question. I
Drop images here (or use the buttons below). Dropping images here will overwrite existing images in the series. When drag and dropping make sure to drag the first image or the order will not be maintained.
+
Drop images here (or use the buttons below). Dropping images here will overwrite existing images in the series. When drag and dropping make sure to drag the first image or the order will not be maintained. Note: dicom images are often not exported in order (although their order can be automatically detected once uploaded)
diff --git a/rad/settings.py b/rad/settings.py
index f24e430a..fcd84822 100644
--- a/rad/settings.py
+++ b/rad/settings.py
@@ -199,6 +199,9 @@ THUMBNAIL_ALIASES = {
},
}
+
+DATA_UPLOAD_MAX_NUMBER_FIELDS = 50000
+
THUMBNAIL_SOURCE_GENERATORS = ('easy_thumbnails.source_generators.pil_image', 'helpers.images.pil_dicom_image')
DBBACKUP_STORAGE = 'django.core.files.storage.FileSystemStorage'
DBBACKUP_STORAGE_OPTIONS = {'location': os.path.join(BASE_DIR, '../backups')}