mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
27 lines
No EOL
703 B
Text
27 lines
No EOL
703 B
Text
<div class="gather-columns">
|
|
<div class="data players">
|
|
<div class="contents">
|
|
<h4>Signed Up</h4>
|
|
|
|
|
|
<ul id="gatherers">
|
|
<% @gather.gatherers.each do |gatherer| %>
|
|
<li<% if gatherer.status > 0 %> class="away"<% end %>>
|
|
<%= flag gatherer.user.country %>
|
|
<%= namelink gatherer.user %>
|
|
<% if cuser and gatherer.can_destroy?(cuser) %>
|
|
<%= link_to gatherer, method: :delete, class: 'delete' do %>
|
|
<%= icon 'times' %>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render partial: 'votes' %>
|
|
</div>
|
|
|
|
<%= render partial: 'status' %>
|
|
|