2016-07-28 20:54:08 -05:00
|
|
|
<main class="summary_tpl">
|
|
|
|
<h2 class="prft-heading">Almost done!</h2>
|
|
|
|
<p>
|
|
|
|
Now's the time to review your answers and go back and change any, if you need to.
|
|
|
|
Once you're done, hit the button at the bottom of the page to submit your answers.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<%= form_tag(post_summary_path) do %>
|
2016-07-29 10:53:57 -05:00
|
|
|
<% @quiz.each do |question| %>
|
2016-07-28 20:54:08 -05:00
|
|
|
<article class="answer-sec">
|
|
|
|
<div class="question-heading">
|
|
|
|
<div class="question-title">
|
|
|
|
<h3><%= question.question %></h3>
|
|
|
|
</div>
|
|
|
|
<div class="answer-buttons">
|
2016-07-29 10:53:57 -05:00
|
|
|
<a href="<%= question_path(question.question_id) %>" class="tertiary-btn button-edit" data-questionId="<%= question.question_id %>">Edit</a>
|
2016-07-28 20:54:08 -05:00
|
|
|
<button class="tertiary-btn button-save">Save</button>
|
|
|
|
<button class="tertiary-btn button-cancel">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="answer-container">
|
|
|
|
<fieldset disabled class="answer-block">
|
2016-07-29 10:53:57 -05:00
|
|
|
<%= render partial: question.input_type, locals: {question: question} %>
|
2016-07-28 20:54:08 -05:00
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<% end #questions loop %>
|
|
|
|
|
|
|
|
<% if @status.can_submit %>
|
|
|
|
<div class="btn-container-right">
|
|
|
|
<input type="submit" class="submit-button" value="Submit all answers" name="submit" />
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<div class="error">Sorry, you must answer all questions before you can submit.</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end #form_tag %>
|
|
|
|
|
|
|
|
</main>
|