Sha256: 34a6f79f611b6fc4f88cde00519ca0c9d397974685697b5b7ae461819b5e276f

Contents?: true

Size: 495 Bytes

Versions: 7

Compression:

Stored size: 495 Bytes

Contents

%h1 Listing supplies

%table
  %thead
    %tr
      %th Name
      %th Description
      %th Source
      %th
      %th
      %th

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

%br

= link_to 'New Supply', new_supply_path

Version data entries

7 entries across 7 versions & 1 rubygems

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