-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new workflow for Request With Review
This workflow is like Request with External Review, in that both internal and external reviewers can review submissions. However, it has a workflow more like Request in that there is only one Review step.
- Loading branch information
1 parent
75ec0a5
commit 814eb99
Showing
2 changed files
with
215 additions
and
1 deletion.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
hypha/apply/funds/migrations/0121_alter_applicationbase_workflow_name_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Generated by Django 4.2.16 on 2024-10-26 13:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("funds", "0120_applicationsubmission_public_id_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="applicationbase", | ||
name="workflow_name", | ||
field=models.CharField( | ||
choices=[ | ||
("single", "Request"), | ||
("single_rev", "Request with review"), | ||
("single_ext", "Request with external review"), | ||
("single_com", "Request with community review"), | ||
("double", "Concept & Proposal"), | ||
], | ||
default="single", | ||
max_length=100, | ||
verbose_name="Workflow", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="applicationsubmission", | ||
name="workflow_name", | ||
field=models.CharField( | ||
choices=[ | ||
("single", "Request"), | ||
("single_rev", "Request with review"), | ||
("single_ext", "Request with external review"), | ||
("single_com", "Request with community review"), | ||
("double", "Concept & Proposal"), | ||
], | ||
default="single", | ||
max_length=100, | ||
verbose_name="Workflow", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="labbase", | ||
name="workflow_name", | ||
field=models.CharField( | ||
choices=[ | ||
("single", "Request"), | ||
("single_rev", "Request with review"), | ||
("single_ext", "Request with external review"), | ||
("single_com", "Request with community review"), | ||
("double", "Concept & Proposal"), | ||
], | ||
default="single", | ||
max_length=100, | ||
verbose_name="Workflow", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="roundbase", | ||
name="workflow_name", | ||
field=models.CharField( | ||
choices=[ | ||
("single", "Request"), | ||
("single_rev", "Request with review"), | ||
("single_ext", "Request with external review"), | ||
("single_com", "Request with community review"), | ||
("double", "Concept & Proposal"), | ||
], | ||
default="single", | ||
max_length=100, | ||
verbose_name="Workflow", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters