From b4f882882d6af4f707c640452ae5c1f4f0e15528 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 25 Nov 2021 22:24:46 +0000 Subject: [PATCH] . --- atlas/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/atlas/models.py b/atlas/models.py index 0b1e2d76..101be82f 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -30,7 +30,7 @@ from anatomy.models import Modality from generic.models import ( Examination, - Condition, + #Condition, Sign, ExamBase, Plane, @@ -79,6 +79,9 @@ class Condition(models.Model): synonym = models.ManyToManyField("self", blank=True) + def __str__(self) -> str: + return self.name + @reversion.register class Case(models.Model):