Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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>