mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
16 lines
No EOL
318 B
Text
16 lines
No EOL
318 B
Text
<div>
|
|
<h1><%= @poll.question %></h1>
|
|
<table>
|
|
<tr>
|
|
<th>Player</th>
|
|
<th>voted for</th>
|
|
<th>Time</th>
|
|
</tr>
|
|
<% @poll.real_votes.reverse_each do |vote| %>
|
|
<tr>
|
|
<td><%= namelink vote.user %></td>
|
|
<td><%= vote.votable%></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</div> |