Sha256: dc47a5f610fda5f7cade1cbbe174e7e81a9335525e14cda89cbec55ca7f70d92
Contents?: true
Size: 673 Bytes
Versions: 13
Compression:
Stored size: 673 Bytes
Contents
<h1>Listing vendors</h1> <table> <tr> <th>Id</th> <th>Name</th> <th>Url</th> <th>Active</th> <th>Description</th> <th></th> <th></th> <th></th> </tr> <% @vendors.each do |vendor| %> <tr> <td><%= vendor.id %></td> <td><%= vendor.name %></td> <td><%= vendor.url %></td> <td><%= vendor.active %></td> <td><%= vendor.description %></td> <td><%= link_to 'Show', vendor %></td> <td><%= link_to 'Edit', edit_vendor_path(vendor) %></td> <td><%= link_to 'Destroy', vendor, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Vendor', new_vendor_path %>
Version data entries
13 entries across 13 versions & 1 rubygems