order atlas tables by creation date by default

This commit is contained in:
Ross
2024-11-11 10:10:26 +00:00
parent 30168b7624
commit 4e2e350e52
4 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -1326,7 +1326,7 @@ class UncategorisedDicom(models.Model):
def get_dicom_info(self):
try:
ds = pydicom.read_file(self.image)
ds = pydicom.dcmread(self.image)
return ds
except pydicom.errors.InvalidDicomError:
return {"SeriesInstanceUID": "1234"}