search for: topfish

Displaying 1 result from an estimated 1 matches for "topfish".

Did you mean: lowfish
2006 Jan 10
0
find_by_sql + partials question
Ok now that I have find_by_sql love working for my "Top 10 List" I want to make them a bit more DRY. Tis is what I have so far: Model: def self.topfish find_by_sql["select species.name, length,species.multiplier*length as score,caught_on from entries join species on species_id = species.id where species_id = ? order by score DESC LIMIT 10", species] end This data is spit out as part of a partial: Partial: <% for l...