Sha256: 157535b7f156d76f6df1f3ab7bac83a658c25dc8d32fd92838ce585be6dbd7bb
Contents?: true
Size: 589 Bytes
Versions: 7
Compression:
Stored size: 589 Bytes
Contents
%h1 Listing recipes %table %thead %tr %th Name %th Description %th Serves %th Meal %th Instructions %th %th %th %tbody - @recipes.each do |recipe| %tr %td= recipe.name %td= recipe.description %td= recipe.serves %td= recipe.meal %td= recipe.instructions %td= link_to 'Show', recipe %td= link_to 'Edit', edit_recipe_path(recipe) %td= link_to 'Destroy', recipe, method: :delete, data: { confirm: 'Are you sure?' } %br = link_to 'New Recipe', new_recipe_path
Version data entries
7 entries across 7 versions & 1 rubygems