Sha256: 850c5e5c32c145688a432da251089141ee07e0d54cb4099d31c71f03ba8fec8c

Contents?: true

Size: 479 Bytes

Versions: 7

Compression:

Stored size: 479 Bytes

Contents

%h1 Listing tools

%table
  %thead
    %tr
      %th Name
      %th Description
      %th Composition
      %th
      %th
      %th

  %tbody
    - @tools.each do |tool|
      %tr
        %td= tool.name
        %td= tool.description
        %td= tool.composition
        %td= link_to 'Show', tool
        %td= link_to 'Edit', edit_tool_path(tool)
        %td= link_to 'Destroy', tool, method: :delete, data: { confirm: 'Are you sure?' }

%br

= link_to 'New Tool', new_tool_path

Version data entries

7 entries across 7 versions & 1 rubygems

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