In the index view of team write the code of index view of player and 
select only the team players by @team.player:

<table>
  <tr>
    <th>Name</th>
    <th>Position</th>
    <th>Number</th>
  </tr>
  <% @team.players.each do |team_player| %>
    <tr>
      <td><%= team_player.first_name %> <%= team_player.last_name 
%></td>
      <td><%= team_player.position %></td>
      <td><%= team_player.number %></td>
    </tr>
  <% end %>
</table>

For the results it's he same.

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to