This commit is contained in:
Ross
2021-12-14 17:45:27 +00:00
parent e92df93343
commit 6dd1657076
4 changed files with 107 additions and 3 deletions
+14 -3
View File
@@ -218,8 +218,13 @@ class Case(models.Model):
help_text="Description of the case",
)
history = models.TextField(null=True, blank=True)
history = models.TextField(
null=True, blank=True, help_text="A (brief) summary of the relevant history"
)
discussion = models.TextField(null=True, blank=True)
report = models.TextField(
null=True, blank=True, help_text="A model (sample) report for the case."
)
# findings = models.TextField(null=True, blank=True)
@@ -242,8 +247,14 @@ class Case(models.Model):
author = models.ManyToManyField(
settings.AUTH_USER_MODEL,
blank=True,
help_text="Author of question",
related_name="atlas_authored_questions",
help_text="Author of the case",
related_name="atlas_authored_cases",
)
editor = models.ManyToManyField(
settings.AUTH_USER_MODEL,
blank=True,
related_name="atlas_edited_cases",
)
scrapped = models.BooleanField(