skill-assessment-app/app/views/admin/result/view.html.erb

66 lines
2.7 KiB
Plaintext
Raw Normal View History

2016-07-31 16:34:35 -05:00
<main class="summary_tpl">
<h2 class="prft-heading">Quiz Review</h2>
2016-11-18 17:43:24 -06:00
<div class="review_meta">
<div>
<strong>Test ID:</strong> <%= @candidate.test_hash %><br />
<strong>Years of Experience:</strong> <%= @candidate.experience %><br />
<strong>Recruiter Email:</strong> <%= mail_to @candidate.recruiter.name, @candidate.recruiter.email %><br />
</div>
<div>
2016-11-20 11:24:17 -06:00
<div class="review_meta__votes" data-id="vote-count">
2016-11-18 17:43:24 -06:00
<strong>Votes: </strong>
2016-11-20 11:24:17 -06:00
<%= link_to admin_up_vote_path(test_hash: @candidate.test_hash), remote: true do %>
Yea (<span data-id="up-votes"><%= @candidate.votes.yea.count %></span>)
2016-11-18 17:43:24 -06:00
<% end %>
2016-11-20 11:24:17 -06:00
<%= link_to admin_down_vote_path(test_hash: @candidate.test_hash), remote: true do %>
Nay (<span data-id="down-votes"><%= @candidate.votes.nay.count %></span>)
2016-11-18 17:43:24 -06:00
<% end %>
2016-11-20 11:24:17 -06:00
<small>(Your vote: <span data-id="my-vote"><%= current_user.my_vote(@candidate) %></span>)</small>
2016-11-18 17:43:24 -06:00
</div>
2016-11-20 11:24:17 -06:00
<% if current_user.acts_as_manager? %>
<div class="review_meta__vetos" data-id="veto-status">
<strong>Manager Vetos: </strong>
<%= link_to admin_approve_vote_path(test_hash: @candidate.test_hash), remote: true do %>
<span data-id="interview-request">
<%= @candidate.approved? ? "Requested" : "Request Interview" %>
</span>
<% end %>
<%= link_to admin_decline_vote_path(test_hash: @candidate.test_hash), remote: true do %>
<span data-id="interview-decline">
<%= @candidate.declined? ? "Declined" : "Decline Interview" %>
</span>
<% end %>
</div>
<% else %>
<strong>Candidate Interview Status: </strong><%= @candidate.review_status %>
<% end %>
2016-11-18 17:43:24 -06:00
</div>
</div>
2016-07-31 16:34:35 -05:00
<% @quiz.each do |question| %>
2016-08-09 23:17:35 -05:00
<%= form_for(:answer, url: '#never-post', html:{id: 'summary-form'}) do |form| %>
2016-07-31 16:34:35 -05:00
<article class="answer-sec <%= question.input_type %>-type" data-qid="<%= question.question_id %>">
<div class="question-heading">
<div class="question-title">
<h3><%= question.question %></h3>
</div>
</div>
<div class="answer-container">
<% if question.attachment.present? %>
<%= image_tag question.attachment %>
<% end %>
2016-07-31 16:34:35 -05:00
<fieldset disabled class="answer-block">
2016-08-08 17:08:20 -05:00
<%= render partial: "quiz/#{question.input_type}", locals: {question: question, answer: question.answer, form: form} %>
2016-07-31 16:34:35 -05:00
</fieldset>
</div>
</article>
<% end #form_tag %>
<% end #questions loop %>
2016-09-22 14:19:44 -05:00
<%= link_to(admin_results_path, { class: 'secondary-btn' }) do %>
2016-07-31 16:34:35 -05:00
<button>Back to list</button>
<% end %>
</main>