rails-guide-store/app/views/products/index.html.erb

12 lines
233 B
Text
Raw Permalink Normal View History

2025-01-24 17:32:29 +00:00
<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>