Skip to content

Instantly share code, notes, and snippets.

@alan707
Created November 19, 2012 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alan707/4112380 to your computer and use it in GitHub Desktop.
Save alan707/4112380 to your computer and use it in GitHub Desktop.
tools table
<% @tools.each do |tool| %>
<tr>
<td><%= link_to tool.title, tool %></td>
<td><%= tool.price %></td>
<td><%= tool.address %></td>
<td><%= link_to tool.user.try(:email), profiles_path %></td>
<!-- <td><%= link_to 'Show', tool %></td>
<!-- <td><%= link_to 'Edit', edit_tool_path(tool) %></td>
<td><%= link_to 'Destroy', tool, method: :delete, data: { confirm: 'Are you sure?' } %></td> -->
</tr>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment