67 lines
2.4 KiB
Plaintext
67 lines
2.4 KiB
Plaintext
<%
|
|
content_for :title, "Quiz Review - Skills Assessment Admin"
|
|
%>
|
|
|
|
<div class="summary_tpl">
|
|
<div class="admin-review">
|
|
<h2 class="prft-heading">Quiz Review</h2>
|
|
|
|
<div class="review_meta">
|
|
<div>
|
|
<% unless @candidate.pending? %>
|
|
<strong>Name:</strong> <%= @candidate.name %><br />
|
|
<% end %>
|
|
<strong>Test ID:</strong> <%= @candidate.test_hash %><br />
|
|
<strong>Years of Experience:</strong> <%= @candidate.experience %><br />
|
|
<strong>Client/Project:</strong> <%= @candidate.project %><br />
|
|
<strong>Position Type:</strong> <%= @candidate.position %><br />
|
|
<strong>Skill Needs:</strong> <%= @candidate.skill_needs %><br />
|
|
<strong>Recruiter Email:</strong> <%= mail_to @candidate.recruiter.name, @candidate.recruiter.email %><br />
|
|
</div>
|
|
</div>
|
|
|
|
<% @quiz.each do |question| %>
|
|
<%= form_for(:answer, url: '#never-post', html:{id: 'summary-form'}) do |form| %>
|
|
<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 %>
|
|
<fieldset disabled class="answer-block">
|
|
<%= render partial: "quiz/#{question.input_type}", locals: {question: question, answer: question.answer, form: form} %>
|
|
</fieldset>
|
|
</div>
|
|
</article>
|
|
<% end #form_tag %>
|
|
<% end #questions loop %>
|
|
|
|
<%= link_to(admin_results_path, { class: 'secondary-btn' }) do %>
|
|
<button>Back to list</button>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="review-comments">
|
|
<div>
|
|
<h2 class="prft-heading">Voting</h2>
|
|
<div class="review_meta">
|
|
<div><%= render partial: 'voting' %></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 id="comment-header" class="prft-heading">Comments</h2>
|
|
<% if policy(QuizComment).new? %>
|
|
<%= render partial: 'comment_form', locals: {comment: @comment, test_hash: @candidate.test_hash } %>
|
|
<% end %>
|
|
<%= render partial: 'comment', collection: @comments, locals: { test_hash: @candidate.test_hash } %>
|
|
<a href="#comment-header">Back to top</a>
|
|
</div>
|
|
</div>
|
|
</div>
|