Guest User

Untitled

a guest
Jul 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!-- views/surveys/_form.html.erb -->
  2. <% form_for @survey do |f| %>
  3. <%= f.error_messages %>
  4. <p>
  5. <%= f.label :name %><br />
  6. <%= f.text_field :name %>
  7. </p>
  8. <% f.fields_for :questions do |builder| %>
  9. <p>
  10. <%= builder.label :content, "Question" %><br />
  11. <%= builder.text_area :content, :rows => 3 %><br />
  12. </p>
  13. <% end %>
  14. <p><%= f.submit "Submit" %></p>
  15. <% end %>
Add Comment
Please, Sign In to add comment