Remove Pre tags to implement.


All Recipes



Online Cookbook - All Recipes

<% @recipes.each do |recipe| %> <% end %>

Recipe

Date

Description

Show

Edit

Delete

<%= link_to recipe.title, :action => "show", :id => recipe.id %> <%= recipe.date %> <%= link_to recipe.description, :action => "show", :id => recipe.id %> <%= link_to 'Show', recipe %> <%= link_to 'Edit', edit_recipe_path(recipe) %> <%= link_to 'Destroy', recipe, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to "Create new recipe", :action => "new" %>

Remove this tag to implement.