Skip to content

Instantly share code, notes, and snippets.

@pjammer
Created September 6, 2009 13:30
Show Gist options
  • Select an option

  • Save pjammer/181802 to your computer and use it in GitHub Desktop.

Select an option

Save pjammer/181802 to your computer and use it in GitHub Desktop.
#controller method
@affiliates = @shop.affiliates.paginate(:page => params[:page], :order => "id desc", :include => :user)
#view trouble spot
<% for affiliate in @affiliates %>
<tr>
<td><%= link_to affiliate.user.email, admin_affiliate_path(affiliate) %></td>
</tr>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment