ensl.org/app/views/gathers/_voting.html.erb

36 lines
1,020 B
Text

<% if @gatherer and cuser %>
<!-- Gather:<%= headers["Gather"] %> -->
<% end %>
<div class="box gatherLeftBox left">
<h2 class="center">
Vote Captains
</h2>
<table id="gatherersTable">
<% @gather.gatherers.most_voted.each do |gatherer| %>
<tr class="<%= cycle('even', 'odd') %>" height="18">
<td><%= flag gatherer.user.country %></td>
<td>(<%= gatherer.votes %>)
<% if @gatherer and gatherer.real_votes.build(:user => cuser).can_create? cuser %>
<%= link_to (h gatherer.user),
:controller => "votes", :action => "create",
:vote => {:votable_id => gatherer.id, :votable_type => "Gatherer"},
:method => "post" %></td>
<% else %>
<%= namelink gatherer.user %></td>
<% end %>
</tr>
<% end %>
</table>
<% if @gatherer %>
<p class="center">
Click to vote for captain.
</p>
<% end %>
</div>
<%= render :partial => "votes" %>
<%= render :partial => "status" %>