master
 1<table class="table table-striped">
 2  <tbody>
 3  <% @products.each do |product| %>
 4    <tr>
 5      <td><%= link_to product.asin, admin_product_path(product.asin) %></td>
 6      <td>
 7        <%= link_to product.item_attributes.title, admin_product_path(product.asin) %> is made by <%= product.item_attributes.manufacturer %> in category <%= product.item_attributes.product_group %>
 8      </td>
 9      <td> <%= link_to 'View on Amazon', product.detail_page_url, target: "_blank" %> </td>
10    </tr>
11  <% end %>
12  </tbody>
13</table>