Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Enable user to select a nested form and save to their user_id
- <% title "Survey" %>
- <p>
- <strong>Name:</strong>
- <%=h @survey.name %>
- </p>
- <ol>
- <% for question in @survey.questions %>
- <li>
- <%=h question.content %>
- <ul>
- <% for answer in question.answers %>
- <li><%=h answer.content %></li>
- <% end %>
- </ul>
- </li>
- <% end %>
- </ol>
- <p>
- <%= link_to "Edit", edit_survey_path(@survey) %> |
- <%= link_to "Destroy", @survey, :confirm => 'Are you sure?', :method => :delete %> |
- <%= link_to "View All", surveys_path %>
- </p>
Advertisement
Add Comment
Please, Sign In to add comment