Sha256: c67eb2976eedc394bcbfaf1a3ccea158414b8bffe007dfc8105294e7c9536fe2
Contents?: true
Size: 704 Bytes
Versions: 22
Compression:
Stored size: 704 Bytes
Contents
<h1>Listing contacts</h1> <%= list -%> <table> <tr> <th>Person</th> <th>Address</th> <th>Phone</th> <th>Fax</th> <th>Country</th> <th></th> <th></th> <th></th> </tr> <% @contacts.each do |contact| %> <tr> <td><%= contact.person_id %></td> <td><%= contact.address %></td> <td><%= contact.phone %></td> <td><%= contact.fax %></td> <td><%= contact.country %></td> <td><%= link_to 'Show', contact %></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> <br /> <%= link_to 'New Contact', new_contact_path %>
Version data entries
22 entries across 22 versions & 1 rubygems