caselawclient.models.documents.statuses
1DOCUMENT_STATUS_HOLD = "On hold" 2""" This document has been placed on hold to actively prevent publication. """ 3 4DOCUMENT_STATUS_PUBLISHED = "Published" 5""" This document has been published and should be considered publicly visible. """ 6 7DOCUMENT_STATUS_IN_PROGRESS = "In progress" 8""" This document has not been published or put on hold, and has been picked up by an editor and 9 should be progressing through the document pipeline. """ 10 11DOCUMENT_STATUS_NEW = "New" 12""" This document isn't published, on hold, or assigned, and can be picked up by an editor in the future. """
DOCUMENT_STATUS_HOLD =
'On hold'
This document has been placed on hold to actively prevent publication.
DOCUMENT_STATUS_PUBLISHED =
'Published'
This document has been published and should be considered publicly visible.
DOCUMENT_STATUS_IN_PROGRESS =
'In progress'
This document has not been published or put on hold, and has been picked up by an editor and should be progressing through the document pipeline.
DOCUMENT_STATUS_NEW =
'New'
This document isn't published, on hold, or assigned, and can be picked up by an editor in the future.