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