Skip to content

Instantly share code, notes, and snippets.

@vestige
Created April 9, 2012 13:59
Show Gist options
  • Save vestige/2343620 to your computer and use it in GitHub Desktop.
Save vestige/2343620 to your computer and use it in GitHub Desktop.
new.html.erb
<h1>New Grabs</h1>
<%= form_for(@climbing) do |f| %>
<table>
<tr>
<td><%= User.all %></td>
</tr>
<tr>
<td>
<%= f.select "action", [["部活", "circle"], ["闇練", "training"], ["予定", "plan"]] %>
<%= f.collection_select(:gym_id, Gym.all, :id, :name) %>
<%= f.submit name="arms!" %>
</td>
</tr>
<tr>
<td>
<%= f .text_area (:comment) %>
</td>
</tr>
</table>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment