Guest User

Untitled

a guest
Apr 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <% form_tag ('/posts') do %>
  2.  
  3. <% @posts.each_with_index do |post, index| %>
  4. <%= error_messages_for :post %>
  5.  
  6. <% fields_for "test""post_#{index}" do |f|%>
  7. <p><%= f.text_field :title %></p>
  8. <p><%= f.text_area :body %></p>
  9. <% end %>
  10.  
  11. <% end %>
  12.  
  13. <%= submit_tag "Create" %>
  14. <% end %>
  15.  
  16. <%= link_to 'Back', posts_path %>
Add Comment
Please, Sign In to add comment