Guest User

Untitled

a guest
Apr 29th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Enable user to select a nested form and save to their user_id
  2. <% title "Survey" %>
  3.  
  4. <p>
  5. <strong>Name:</strong>
  6. <%=h @survey.name %>
  7. </p>
  8.  
  9. <ol>
  10. <% for question in @survey.questions %>
  11. <li>
  12. <%=h question.content %>
  13. <ul>
  14. <% for answer in question.answers %>
  15. <li><%=h answer.content %></li>
  16. <% end %>
  17. </ul>
  18. </li>
  19. <% end %>
  20. </ol>
  21.  
  22. <p>
  23. <%= link_to "Edit", edit_survey_path(@survey) %> |
  24. <%= link_to "Destroy", @survey, :confirm => 'Are you sure?', :method => :delete %> |
  25. <%= link_to "View All", surveys_path %>
  26. </p>
Advertisement
Add Comment
Please, Sign In to add comment