Include unsigned TOs in the is_draft property

This commit is contained in:
leigh-mil 2020-02-11 11:51:12 -05:00
parent 4fb8d37746
commit 0b1628008f

View File

@ -77,7 +77,7 @@ class TaskOrder(Base, mixins.TimestampsMixin):
@property
def is_draft(self):
return self.status == Status.DRAFT
return self.status == Status.DRAFT or self.status == Status.UNSIGNED
@property
def is_active(self):