Sha256: ad882688bc92cf5d8a16b8656f876df92ffa12d1a0dca0d679f66fc441c6ee9c
Contents?: true
Size: 658 Bytes
Versions: 1
Compression:
Stored size: 658 Bytes
Contents
<h1>Listing contacts</h1> <table> <tr> <th>First name</th> <th>Last name</th> <th>Email</th> <th>Comment</th> <th></th> <th></th> <th></th> </tr> <% @contacts.each do |contact| %> <tr> <td><%= contact.first_name %></td> <td><%= contact.last_name %></td> <td><%= contact.email %></td> <td><%= contact.comment %></td> <td><%= link_to 'Show', contact %></td> <td><%= link_to 'Edit', edit_contact_path(contact) %></td> <td><%= link_to 'Destroy', contact, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Contact', new_contact_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
contactify-0.1 | app/views/contactify/contacts/index.html.erb |