Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # dashboard_controller.rb
  2. before_filter :authenticate_user!
  3.  
  4. def index
  5. @contacts = current_user.contacts
  6. end
  7.  
  8. # dashboard/index.html.erb
  9. <% @contacts.each do |contact| %>
  10. <p>
  11. <strong><%= contact.name %></strong> <br />
  12. Phone: <%= contact.phone %>
  13. Mobile: <%= contact.mobile %>
  14. Email: <%= contact.email %>
  15. </p>
  16. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement