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