Skip to content

Instantly share code, notes, and snippets.

@deJaVisions
Created September 26, 2011 21:49
Show Gist options
  • Select an option

  • Save deJaVisions/1243511 to your computer and use it in GitHub Desktop.

Select an option

Save deJaVisions/1243511 to your computer and use it in GitHub Desktop.
index.html.erb
<h1>LIsting products</h1>
<table>
<% @products.each do |product| %>
<tr class="<%= cycle('list_line_odd'g, 'list_line_even') %>">
<td>
<%= image_tag(product.image_url, class: 'list_image') %>
</td>
<td class="list_description">
<dl>
<dt><%= product.title %></dt>
<dd><%= truncate(strip_tags(product.description),
length: 80 %></dd>
</dl>
</td>
<td class="list_actions">
<%= link_to 'Show', product %><br />
<%= link_to 'Edit', edit_product_path(product) %><br />
<%= link_to 'Destroy', product,
confirm: 'Sure?',
method: :delete %>
</td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Product', new_product_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment