a few updates to rcr mig
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user