View raw

1 <p style="color: green"><%= notice %></p> 2 3 <% content_for :title, "Fertilizer products" %> 4 5 <h1>Fertilizer products</h1> 6 7 <div id="fertilizer_products"> 8 <% @fertilizer_products.each do |fertilizer_product| %> 9 <%= render fertilizer_product %> 10 <p> 11 <%= link_to "Show this fertilizer product", fertilizer_product %> 12 </p> 13 <% end %> 14 </div> 15 16 <%= link_to "New fertilizer product", new_fertilizer_product_path %> 17