Skip to content

Stage

hypha.apply.funds.workflows.models.stage

Request module-attribute

Request = Stage('Request')

RequestSame module-attribute

RequestSame = Stage('RequestSame', True)

RequestExt module-attribute

RequestExt = Stage('RequestExt', True)

RequestCom module-attribute

RequestCom = Stage('RequestCom', True)

Concept module-attribute

Concept = Stage('Concept')

Proposal module-attribute

Proposal = Stage('Proposal', True)

Stage

Stage(name, has_external_review=False)
Source code in hypha/apply/funds/workflows/models/stage.py
4
5
6
def __init__(self, name: str, has_external_review: bool = False) -> None:
    self.name = name
    self.has_external_review = has_external_review

name instance-attribute

name = name

has_external_review instance-attribute

has_external_review = has_external_review