When viewing an application, there are two sections that display key information: the application Summary (1) and Sidebar (2). Both of these sections are customizable, allowing you to choose which data you want to display. Customizing these sections helps ensure program users can quickly view essential data.
Some Emergency Medicine programs may want to add applicants' eSLOE data to the Application Summary.
To achieve this, follow the steps below:
{ let refs = references?.emEvaluationESloe?.references; if(refs.length == 0) return ""; var table = []; for(var ref of refs) { let inst = ref.form.evaluator_institution; let start = ref.form.rotation_start_date; let end = ref.form.rotation_end_date; let grade = ref.form.grade_received; let guidance = ref.form.guidance; let rank = ref.form.how_high; table.push( { 'Institution': inst, 'Start': start, 'End': end, 'Grade': grade, 'Guidance Required': guidance, 'Estimated Rank': rank, }); } return table; }
See the steps in motion: