
Untitled
By: a guest on
Apr 29th, 2012 | syntax:
None | size: 0.54 KB | hits: 26 | expires: Never
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>