This commit is contained in:
Ross
2022-04-21 17:46:02 +01:00
parent 82636c546b
commit 31773b103d
2 changed files with 22 additions and 1 deletions
+2 -1
View File
@@ -38,6 +38,7 @@ from anatomy.models import Modality
from generic.models import (
CidUser,
CidUserExam,
CidUserGroup,
Examination,
# Condition,
ExamBase,
@@ -650,7 +651,7 @@ class CaseCollection(models.Model):
CidUser, blank=True, related_name="casecollection_exams"
)
group = models.ForeignKey("CidUserGroup", on_delete=models.SET_NULL, null=True, blank=True)
group = models.ForeignKey(CidUserGroup, on_delete=models.SET_NULL, null=True, blank=True)
archive = models.BooleanField(default=False)