I have 3 tables - users, things, and follows. Users can follow things through the follows table, associating a user_id with a things_id. This would
user_id
things_id
You might be able to do something like:
<% things.follows.each do |follow| %> <%= follow.relation %> <%= follow.user %> <% end %>