diff --git a/atlas/models.py b/atlas/models.py index 451420c4..865784c9 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -222,7 +222,7 @@ class SeriesFinding(models.Model): annotation_json = models.TextField(null=True, blank=True) def __str__(self) -> str: - findings = self.findings.objects.values_list("name") + findings = self.findings.all().values_list("name") return f"{self.series.id}/{findings}/{self.description}"