Guest User

Untitled

a guest
Sep 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <h1>New Grabs</h1>
  2.  
  3. <%= form_for(@climbing) do |f| %>
  4. <table>
  5. <tr>
  6. <td><%= User.all %></td>
  7. </tr>
  8. <tr>
  9. <td>
  10. <%= f.select "action", [["部活", "circle"], ["闇練", "training"], ["予定", "plan"]] %>
  11. <%= f.collection_select(:gym_id, Gym.all, :id, :name) %>
  12. <%= f.submit name="arms!" %>
  13. </td>
  14. </tr>
  15. <tr>
  16. <td>
  17. <%= f .text_area (:comment) %>
  18. </td>
  19. </tr>
  20. </table>
  21.  
  22. <% end %>
Add Comment
Please, Sign In to add comment