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

Version Path
cookbook-0.1.6 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.5 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.4 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.3 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.2 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.1 spec/dummy/app/views/recipes/index.html.haml
cookbook-0.1.0 spec/dummy/app/views/recipes/index.html.haml