mirror of
https://github.com/sartography/protocol-builder-mock.git
synced 2025-02-16 01:26:40 +00:00
Remove review types 23, 24
Add review type 21
This commit is contained in:
parent
2f84fa8b61
commit
ffb5b3890d
@ -137,12 +137,11 @@ class StudyDetailsForm(FlaskForm):
|
||||
IS_REVIEW_BY_CENTRAL_IRB = IntegerField(validators=[Optional()], label='IS_REVIEW_BY_CENTRAL_IRB')
|
||||
IRBREVIEWERADMIN = StringField(label='IRBREVIEWERADMIN')
|
||||
IS_UVA_COLLABANALYSIS = IntegerField(validators=[Optional()], label='IS_UVA_COLLABANALYSIS')
|
||||
REVIEW_TYPE = SelectField("REVIEW_TYPE",
|
||||
REVIEW_TYPE = SelectField("REVIEW_TYPE/REVIEWTYPENAME",
|
||||
choices=[('1', ('1 None')),
|
||||
('2', ('2 Full Committee')),
|
||||
('3', ('3 Expedited')),
|
||||
('23', ('23 Non-UVA IRB Full Board')),
|
||||
('24', ('24 Non-UVA IRB Expedited'))])
|
||||
('21', ('21 Review by Non-UVA IRB'))])
|
||||
|
||||
|
||||
class ConfirmDeleteForm(FlaskForm):
|
||||
|
@ -350,10 +350,8 @@ def _get_review_type_name(review_type):
|
||||
return 'Full Committee'
|
||||
elif review_type == '3':
|
||||
return 'Expedited'
|
||||
elif review_type == '23':
|
||||
return 'Non-UVA IRB Full Board'
|
||||
elif review_type == '24':
|
||||
return 'Non-UVA IRB Expedited'
|
||||
elif review_type == '21':
|
||||
return 'Review by Non-UVA IRB'
|
||||
|
||||
|
||||
@app.route('/study_details/<study_id>', methods=['GET', 'POST'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user