Guest User

Untitled

a guest
Jul 15th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <h1>Contacts#index</h1>
  2. <p>Find me in app/views/contacts/index.html.erb</p>
  3.  
  4.  
  5. <% if flash[:notice] %>
  6. <div class="notice"><%= flash[:notice] %></div>
  7. <% end %>
  8.  
  9.  
  10.  
  11.  
  12. <table border = "1">
  13. <thead>
  14. <tr>
  15. <td>Firstname</td>
  16. <td>Lastname</td>
  17. <td>Email</td>
  18. <td>Twitter</td>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <% @contacts.each do |contact| %>
  23. <tr>
  24. <td><%= h contact.first_name %></td>
  25. <td><%= h contact.last_name %></td>
  26. <td><%= h contact.email %></td>
  27. <td><%= h contact.twitter %></td>
  28. <td><%= link_to "[Edit]", edit_contact_path(contact) %></td>
  29. <td><%= link_to "[Delete]", contact_path(contact), :method=>"delete"%></td>
  30. </tr>
  31. <% end %>
  32. </tbody>
  33. </table>
  34.  
  35. <%= link_to "Add a contact", new_contact_path %>
  36. <!--<%= link_to "Add a contact", new_contact_url %>-->
Add Comment
Please, Sign In to add comment