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, "Crops" %> <h1>Crops</h1> <div id="crops"> <% @crops.each do |crop| %> <%= render crop %> <p> <%= link_to "Show this crop", crop %> </p> <% end %> </div> <%= link_to "New crop", new_crop_path %>