View raw

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