.
This commit is contained in:
+2
-2
@@ -163,7 +163,7 @@ class Subspecialty(models.Model):
|
||||
return format_html("<a href='{}'>{}</a>", self.get_absolute_url(), self.name)
|
||||
|
||||
|
||||
class PathalogicalProcess(models.Model):
|
||||
class PathologicalProcess(models.Model):
|
||||
name = models.CharField(max_length=255)
|
||||
|
||||
def __str__(self) -> str:
|
||||
@@ -230,7 +230,7 @@ class Case(models.Model):
|
||||
|
||||
presentation = models.ManyToManyField(Presentation, blank=True)
|
||||
|
||||
pathological_process = models.ManyToManyField(PathalogicalProcess, blank=True)
|
||||
pathological_process = models.ManyToManyField(PathologicalProcess, blank=True)
|
||||
|
||||
differential = models.ManyToManyField(
|
||||
Condition, through=Differential, related_name="casedifferential"
|
||||
|
||||
Reference in New Issue
Block a user