Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <div class="container">
  2. <h2 class="survey-title">
  3. <%= @attempt.survey.name %>
  4. <p><small><%= @attempt.survey.description %></small></p>
  5. </h2>
  6. <ol class="questions">
  7.  
  8. <% if is_multanswer?(@survey.survey_type) %>
  9.  
  10. <% @attempt.answers.each do |answer| %>
  11.  
  12. <li>
  13. <p class="question"> <%= answer.question.text %> </p>
  14. <ul class="options">
  15. <% answer.question.options.each do |option| %>
  16. <li class="checkbox">
  17. <label>
  18.  
  19. <%= check_box_tag '', '', the_chosen_one?(answer, option), disabled: true %>
  20. <% color = get_color_of_option(answer, option) %>
  21. <span class="<%= color %> <%= the_chosen_one?(answer, option) %>"> <%= option.text %> <%= get_weight(option) %> </span>
  22. </label>
  23. <p class="answers-number"> <%= number_of_people_who_also_answered(option.id) %> </p>
  24. </li>
  25. <% end %>
  26. </ul>
  27. </li>
  28. <% end %>
  29.  
  30. <% else %>
  31. <% @attempt.answers.each do |answer| %>
  32. <li>
  33. <p class="question"> <%= answer.question.text %> </p>
  34. <ul class="options">
  35. <% answer.question.options.each do |option| %>
  36. <li class="radio">
  37. <label>
  38. <%= radio_button_tag '', '', the_chosen_one?(answer, option), disabled: true %>
  39. <% color = get_color_of_option(answer, option) %>
  40. <span class="<%= color %> <%= the_chosen_one?(answer, option) %>"> <%= option.text %> <%= get_weight(option) %> </span>
  41. </label>
  42. <p class="answers-number"> <%= number_of_people_who_also_answered(option.id) %> </p>
  43. </li>
  44. <% end %>
  45. </ul>
  46. </li>
  47. <% end %>
  48. <% end %>
  49.  
  50. <ol>
  51. </div>
  52.  
  53. <div class="checkbox col-xs-3 col-sm-2">
  54. <%= f.label :correct do %>
  55. <%= f.check_box :correct %>
  56. Correct answer
  57. <% end %>
  58. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement