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 %>