2014-04-08 23:28:46 +00:00
|
|
|
<h5><%= @poll.question %></h5>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-08 23:28:46 +00:00
|
|
|
<div>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% @poll.options.all.each do |opt| %>
|
|
|
|
<p>
|
|
|
|
<% if cuser and !@poll.voted?(cuser) %>
|
|
|
|
<%= link_to (h opt), :controller => "votes", :action => "create", :vote => {:votable_id => opt.id, :votable_type => "Option"} %>
|
|
|
|
<% else %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<%= opt.option %> <br />
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
<% if opt.votes > 0 %>
|
|
|
|
<%= image_tag "/images/icons/poll.png", :class => "bar", :height => 6, :width => opt.votes*100/@poll.votes %>
|
|
|
|
<% end %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<span><%= opt.votes %></span>
|
2014-03-23 00:22:25 +00:00
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2014-04-08 23:28:46 +00:00
|
|
|
<p><%= link_to "Archive..", polls_path %></p>
|