Sha256: 29eb4259755a4805fcdcf06d6dace65a8b45e7e67e624bffc69f4952f191e11d
Contents?: true
Size: 454 Bytes
Versions: 3
Compression:
Stored size: 454 Bytes
Contents
<div class="container"> <div class="grid-12"> <h1>Contacts</h1> <table> <% @contacts.each do |contact| %> <tr> <td><%= contact.name %></td> <td><%= link_to 'Edit', edit_contact_path(contact) %></td> <td><%= link_to 'Destroy', contact, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <%= link_to 'New', new_contact_path %> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
formula-0.3.5 | test/dummy/app/views/contacts/index.html.erb |
formula-0.3.4 | test/dummy/app/views/contacts/index.html.erb |
formula-0.3.3 | test/dummy/app/views/contacts/index.html.erb |