Guest User

Untitled

a guest
Jun 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <h1>Editing platform</h1>
  2.  
  3. <% form_for(@platform) do |f| %>
  4. <%= f.error_messages %>
  5.  
  6. <p>
  7. <%= f.label :title %><br />
  8. <%= f.text_field :title %>
  9. </p>
  10. <p>
  11. <%= f.label :preset_id %><br />
  12. <% #debugger %>
  13. <%= collection_select(:platform, :id, @platform, :id, :title)%>
  14. </p>
  15. <p>
  16. <%= f.submit 'Update' %>
  17. </p>
  18. <% end %>
  19.  
  20. <%= link_to 'Show', @platform %> |
  21. <%= link_to 'Back', platforms_path %>
Add Comment
Please, Sign In to add comment