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