17 lines
316 B
Plaintext
17 lines
316 B
Plaintext
<p style="color: green"><%= notice %></p>
|
|
|
|
<% content_for :title, "Products" %>
|
|
|
|
<h1>Products</h1>
|
|
|
|
<div id="products">
|
|
<% @products.each do |product| %>
|
|
<%= render product %>
|
|
<p>
|
|
<%= link_to "Show this product", product %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New product", new_product_path %>
|