summaryrefslogtreecommitdiff
path: root/app/views/admin/products/_index.html.erb
blob: 03db79ad70333184a7b4d30654420ad66d374d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<table class="table table-striped">
  <tbody>
  <% @products.each do |product| %>
    <tr>
      <td><%= link_to product.asin, admin_product_path(product.asin) %></td>
      <td>
        <%= 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 %>
      </td>
      <td> <%= link_to 'View on Amazon', product.detail_page_url, target: "_blank" %> </td>
    </tr>
  <% end %>
  </tbody>
</table>