mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 05:21:19 +00:00
24 lines
606 B
Text
24 lines
606 B
Text
<div class="box gatherLeftBox left">
|
|
<h2 class="center">
|
|
Signed Up
|
|
</h2>
|
|
|
|
<table id="gatherersTable">
|
|
|
|
<% @gather.gatherers.each do |gatherer| %>
|
|
<tr class="<%= cycle('even', 'odd') %>" height="18">
|
|
<td><%= flag gatherer.user.country %></td>
|
|
<td><%= namelink gatherer.user %></td>
|
|
|
|
<%# if gatherer.can_destroy? cuser %>
|
|
<% if cuser and cuser.admin? %>
|
|
<td>[<%= link_to "X", gatherer, :method => :delete %>]</td>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
<%= render :partial => "votes" %>
|
|
|
|
<%= render :partial => "status" %>
|