Sha256: 13cd56ce7f532705c60565b03072984b544eb4e0320821135a328ffc7ba3b4f0
Contents?: true
Size: 629 Bytes
Versions: 7
Compression:
Stored size: 629 Bytes
Contents
%h1 Listing ingredients %table %thead %tr %th Name %th Description %th Aisle %th Store %th Cost %th %th %th %tbody - @ingredients.each do |ingredient| %tr %td= ingredient.name %td= ingredient.description %td= ingredient.aisle %td= ingredient.store %td= ingredient.cost %td= link_to 'Show', ingredient %td= link_to 'Edit', edit_ingredient_path(ingredient) %td= link_to 'Destroy', ingredient, method: :delete, data: { confirm: 'Are you sure?' } %br = link_to 'New Ingredient', new_ingredient_path
Version data entries
7 entries across 7 versions & 1 rubygems