12 lines
233 B
Text
12 lines
233 B
Text
|
<h1><%= t ".title" %></h1>
|
||
|
|
||
|
<%= link_to "New Product", new_product_path if authenticated? %>
|
||
|
|
||
|
<div id="products">
|
||
|
<% @products.each do |product| %>
|
||
|
<div>
|
||
|
<%= link_to product.name, product %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|