Using the Active Admin framework, I can add a 'users' column that totals the count for a particular 'club' by doing this:
ActiveAdmin.register Club do
index do
column 'Users' do |club|
club.users.count
end
end
end
Can I make this sortable somehow?