Guest User

Untitled

a guest
Aug 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Show parent name in child view
  2. @contacts = Contact.paginate :page => params[:page],
  3. :include => :relations,
  4. :per_page => 10,
  5. :order => "last_name"
  6.  
  7. <%= contact.relation.name %>
  8.  
  9. <%= contact.relation.name rescue "MISSING NAME" %>
Add Comment
Please, Sign In to add comment