sartography / cr-connect

0 stars 0 forks source link

Accommodate New Study Statuses in Main Dashbaord #564

Closed calexh-sar closed 2 years ago

calexh-sar commented 2 years ago

Per Mike's comment in ticket #562, update Main Dashboard as needed to accommodate new Study Statuses, which are:

cullerton commented 2 years ago

From the backend, these are returned all lower case, with underscores. I changed the dashes to underscores too.

    submitted_for_pre_review = 'submitted_for_pre_review'
    in_pre_review = 'in_pre_review'
    returned_from_pre_review = 'returned_from_pre_review'
    pre_review_complete = 'pre_review_complete'
    agenda_date_set = 'agenda_date_set'
    approved = 'approved'
    approved_with_conditions = 'approved_with_conditions'
    deferred = 'deferred'
    disapproved = 'disapproved'
calexh-sar commented 2 years ago

Working as designed.