Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Alias Route to Controller
  2. resources :pocs, :controller => "point_of_contacts"
  3.        
  4. <% @point_of_contacts.each do |point_of_contact| %>
  5.   <tr>
  6.     <td><%= point_of_contact.first %></td>
  7.     <td><%= point_of_contact.last %></td>
  8.     <td><%= point_of_contact.title %></td>
  9.     <td><%= point_of_contact.phone %></td>
  10.     <td><%= point_of_contact.email %></td>
  11.     <td><%= link_to 'Show', point_of_contact %></td>
  12.   </tr>
  13. <% end %>