only display top oneness for hall of famers

master
Coleman 2008-10-17 17:02:50 -05:00
parent dcc7e2ff82
commit 25e7cf9024
2 changed files with 2 additions and 14 deletions

View File

@ -9,7 +9,6 @@ class Home < Application
def hall_of_fame
@top_oneness = Photo.find :all, :order => 'oneness DESC, id DESC', :limit => 10, :conditions => 'oneness > 0'
@top_voted = Photo.find :all, :order => 'votes_count DESC, id DESC', :limit => 10, :conditions => 'votes_count > 0'
render
end

View File

@ -8,9 +8,9 @@
p
:text-align center
%h2 Top oneness
%h1 Top oneness
%ol
%ol.no_list_style.centered
- @top_oneness.each_with_index do |p, index|
%li
%a{ :href => url(:photo, p) }
@ -18,14 +18,3 @@
%p== <strong>Oneness:</strong> #{p.oneness}% <strong>Votes 0:</strong> #{p.zero_votes} <strong>Votes 1:</strong> #{p.one_votes} <strong>Total Votes:</strong> #{p.votes_count}
%br{ :style => 'clear: both' }
%h2 Top voted
%ol
- @top_voted.each_with_index do |p, index|
%li
%a{ :href => url(:photo, p) }
%img{ :src => photo_url(p, dim, dim) }
%p== <strong>Oneness:</strong> #{p.oneness}% <strong>Votes 0:</strong> #{p.zero_votes} <strong>Votes 1:</strong> #{p.one_votes} <strong>Total Votes:</strong> #{p.votes_count}
%br{ :style => 'clear: both' }