This commit is contained in:
Ross
2021-02-05 10:01:21 +00:00
parent 85b5b5d7ac
commit a3a291388a
2 changed files with 22 additions and 2 deletions
+2 -2
View File
@@ -125,8 +125,8 @@ class LongSeriesImage(models.Model):
class LongSeries(models.Model):
modality = models.ForeignKey(Modality, related_name="series_modality", on_delete=models.SET_NULL, null=True)
#examination = models.ForeignKey(
# Examination, help_text="Name of the examination", related_name="series_examination", on_delete=models.SET_NULL, null=True)
examination = models.ForeignKey(
Examination, help_text="Name of the examination", related_name="series_examination", on_delete=models.SET_NULL, null=True)
long = models.ForeignKey("Long", related_name="series", on_delete=models.SET_NULL, null=True)
description = models.TextField(blank=True, help_text="Description of stack, for admin organisation")