Replace current first line of applicant details ("Details for XYZ:") with:
** 1/3 Emma Jones **
where first number is the number of the applicant (index + 1) and second number is total number of applicants. Because view_applicant_details is called from many different places, and you want to pass two new pieces of information, it's worth creating a helper function in the Controller.
Replace current first line of applicant details ("Details for XYZ:") with:
where first number is the number of the applicant (index + 1) and second number is total number of applicants. Because
view_applicant_details
is called from many different places, and you want to pass two new pieces of information, it's worth creating a helper function in the Controller.