move /review to /admin/results

This commit is contained in:
Mark Moser
2016-09-22 14:19:44 -05:00
parent 9078c463f4
commit 0a9bf96e24
11 changed files with 53 additions and 131 deletions

View File

@ -10,7 +10,7 @@
<% @candidates.each do |candidate| %>
<tr>
<td><%= link_to candidate.test_hash, review_test_path(candidate.test_hash) %></td>
<td><%= link_to candidate.test_hash, admin_result_path(candidate.test_hash) %></td>
<td><%= candidate.experience %> years</td>
<td><%= mail_to(candidate.recruiter.email) %></td>
</tr>

View File

@ -27,7 +27,7 @@
<% end #form_tag %>
<% end #questions loop %>
<%= link_to(review_path, { class: 'secondary-btn' }) do %>
<%= link_to(admin_results_path, { class: 'secondary-btn' }) do %>
<button>Back to list</button>
<% end %>
</main>

View File

@ -1,21 +0,0 @@
<main class="intro_tpl">
<h1>Reviewer Login</h1>
<% if flash[:error].present? %>
<div class="error"><%= flash[:error] %></div>
<% end %>
<%= form_for :auth, url: review_login_path do |form| %>
<div class="form-group">
<%= form.label :email %>
<%= form.email_field :email %>
</div>
<div class="form-group">
<%= form.label :password %>
<%= form.password_field :password %>
</div>
<%= submit_tag "Login" %>
<% end %>
</main>

View File

@ -1,6 +1,6 @@
<row>
<columns class="email-body">
<p>Candidate <strong><%= @candidate.test_hash %></strong> has completed the Skills Assessment Test.</p>
<p>You can view the results here: <%= link_to nil, review_test_url(@candidate.test_hash) %>.</p>
<p>You can view the results here: <%= link_to nil, admin_result_url(@candidate.test_hash) %>.</p>
</columns>
</row>
</row>

View File

@ -2,4 +2,4 @@ PERFICIENT/digital SKILLS ASSESSMENT RESULTS
Candidate <%= @candidate.test_hash %> has completed the Skills Assessment Test.
You can view the results here: <%= review_test_url(@candidate.test_hash) %>.
You can view the results here: <%= admin_result_url(@candidate.test_hash) %>.