a few updates to rcr mig

This commit is contained in:
Ross
2023-12-13 21:58:56 +00:00
parent 1936a66d7f
commit 3f013099fe
8 changed files with 84 additions and 5 deletions
+4
View File
@@ -30,9 +30,13 @@ class Item(models.Model):
outcome = models.ForeignKey("Outcome", on_delete=models.SET_NULL, blank=True, null=True)
outcome_reason = models.ForeignKey("OutcomeReason", on_delete=models.SET_NULL, blank=True, null=True)
outcome_free_text = models.CharField(max_length=255, help_text="Reason for outcome (if not available above)", default="", blank=True)
completed = models.BooleanField(default=False)
class Meta:
ordering = ("pk",)
def __str__(self):
return self.name