skill-assessment-app/app/views/candidate/_live_code.html.erb

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-08-01 15:16:20 -05:00
<%
option_id = "#{question.question_id}_finish-later"
checkbox_html = {class: 'checkbox',
id: "answer_#{option_id}",
name: "answer[live_code][later]",
checked: Array(question.answer).include?('finish-later')
}
%>
2016-08-04 18:03:23 -05:00
<!-- <div class="js-error">
2016-07-27 22:16:12 -05:00
Please revisit this page with JavaScript enabled to modify your answer.
2016-08-04 18:03:23 -05:00
</div> -->
2016-07-27 22:16:12 -05:00
2016-07-29 16:28:02 -05:00
<% unless params[:action] == 'summary' %>
<div data-id="live-coder-finish-later">
<p class="warning">
This is a question where you will be asked to write code, and it utilizes a JavaScript-enabled
2016-08-04 18:03:23 -05:00
environment. It looks like JavaScript is not loaded. Please check the box below
2016-07-29 16:28:02 -05:00
to acknowledge that you agree to come back at a later time to finish answering this question
before you can submit the test.
</p>
2016-08-01 15:16:20 -05:00
<%= form.check_box(:answer, checkbox_html, true, '') %>
2016-08-04 18:03:23 -05:00
<%= form.label(option_id, 'I will come back later to finish this code question') %>
2016-07-29 16:28:02 -05:00
</div>
<% end %>
2016-07-27 22:16:12 -05:00
<div data-id="live-coder-answer">
2016-07-29 11:00:04 -05:00
<% # answers inserted dynamically via jQuery .load()
# to check for JS capability/enabled
2016-07-27 22:16:12 -05:00
%>
</div>
2016-08-01 16:27:17 -05:00
<%= render partial: "candidate/answer_errors", locals: {question: question, answer: @answer} %>