diff --git a/atlas/models.py b/atlas/models.py index df029c07..d21ad9ef 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -235,7 +235,7 @@ class Case(models.Model): def __str__(self): examinations = [series.get_examination() for series in self.series.all()] - return "{}/{} : {}".format(self.pk, self.description, ", ".join(examinations)) + return f"{self.pk}/{self.title} {self.condition}, {', '.join(examinations)}" class SeriesImage(models.Model):