Rename "Work in Progress" state to "Draft"

This commit is contained in:
rubenwardy 2021-01-25 16:58:58 +00:00
parent 6f9c01c375
commit ce4c2142e2
2 changed files with 3 additions and 3 deletions

View File

@ -73,10 +73,10 @@ class PackageType(enum.Enum):
class PackageState(enum.Enum):
WIP = "Work in Progress"
WIP = "Draft"
CHANGES_NEEDED = "Changes Needed"
READY_FOR_REVIEW = "Ready for Review"
APPROVED = "Approved"
APPROVED = "Approved"
DELETED = "Deleted"
def toName(self):

View File

@ -18,7 +18,7 @@ Delete | {{ package.title }}
{% if package.approved %}
<p>
Unapproving a package will put it back into Work in Progress, where
Unapproving a package will put it back into Draft, where
it can be submitted for approval again.
</p>
{% endif %}