Skip to content

Commit

Permalink
Fixed typo in review type
Browse files Browse the repository at this point in the history
  • Loading branch information
cullerton committed Dec 11, 2024
1 parent 18a4919 commit dbcd6b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pb/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class IRBInfoForm(FlaskForm):
IRB_ADMINISTRATIVE_REVIEWER = StringField('IRB_ADMINISTRATIVE_REVIEWER')
AGENDA_DATE = DateField('AGENDA_DATE', [Optional()], widget=DateInput())
IRB_REVIEW_TYPE = SelectField("IRB_REVIEW_TYPE",
choices=['None', 'Full Committee', 'Expedited', 'Non-UVA IRB Full Board', 'Non-UVA IRB Expedited'])
choices=['None', 'Full Committee', 'Expedited', 'Non-UVA IRB - Full Board', 'Non-UVA IRB Expedited'])
IRBEVENT = SelectField("IRBEVENT_ID / IRBEVENT",
choices=[((q.EVENT_ID, q.EVENT), f"{q.EVENT_ID} {q.EVENT}") for q in IRBInfoEvent.all()])
IRB_STATUS = SelectField("IRB_STATUS_ID / IRB_STATUS",
Expand Down

0 comments on commit dbcd6b1

Please sign in to comment.