Я хочу иметь возможность выводить что-то вроде следующего:
Name Car Type 1 Car Type 2 Car Type 3
Dave 1 3 6
Mike 5 2 8
Любой совет по достижению этого с активной записи? (рельсы 3.1)
Модели:
class Person
#name
has_many :sales
end
class Sales
belongs_to :person
belongs_to :car
end
class Cars
#type, id, name
has_many :sales
end