Skip to content

Instantly share code, notes, and snippets.

@koriroys
Created February 10, 2012 00:42
Show Gist options
  • Save koriroys/1784841 to your computer and use it in GitHub Desktop.
Save koriroys/1784841 to your computer and use it in GitHub Desktop.
<table>
<tr>
<th>Player Name</th>
<th>action</th>
</tr>
<% @players.each do |player| %>
<tr>
<td><%= link_to player.name, player %></td>
<td><%= button_to "Remove from team", :action => "update" %></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment