This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-10-01 02:19:35 -04:00
|
|
|
module Merb
|
|
|
|
module PhotosHelper
|
2008-10-11 04:22:58 -04:00
|
|
|
def vote_count(photo)
|
|
|
|
curl = Gchart.pie(
|
|
|
|
:size => '400x200',
|
|
|
|
:title => "Oneable Results",
|
|
|
|
:legend => [ 'Not One', 'One' ],
|
|
|
|
:data => [ photo.zero_votes, photo.one_votes ],
|
|
|
|
:theme => :pastel
|
|
|
|
)
|
|
|
|
"<img src='#{curl}' alt='Chart Results' />"
|
|
|
|
end
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|
2008-10-11 04:22:58 -04:00
|
|
|
end # Merb
|