From 97d239283212ef824d9c63ab294dfee8c56407dc Mon Sep 17 00:00:00 2001 From: Mark Moser Date: Tue, 22 Nov 2016 17:04:55 -0600 Subject: [PATCH] add status to results list --- app/views/admin/candidate/index.html.erb | 2 +- app/views/admin/result/index.html.erb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/views/admin/candidate/index.html.erb b/app/views/admin/candidate/index.html.erb index 1e290bd..a004369 100644 --- a/app/views/admin/candidate/index.html.erb +++ b/app/views/admin/candidate/index.html.erb @@ -16,7 +16,7 @@ Progress Completed Reminded - Review Status + Interview Status <% @candidates.each do |candidate| %> diff --git a/app/views/admin/result/index.html.erb b/app/views/admin/result/index.html.erb index 60b01b4..6a77620 100644 --- a/app/views/admin/result/index.html.erb +++ b/app/views/admin/result/index.html.erb @@ -8,6 +8,7 @@ Test ID Experience Recruiter + Interview Status <% @candidates.each do |candidate| %> @@ -15,6 +16,7 @@ <%= link_to candidate.test_hash, admin_result_path(candidate.test_hash) %> <%= candidate.experience %> years <%= mail_to(candidate.recruiter.email) %> + <%= candidate.review_status unless candidate.pending? %> <% end %>