mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
cf0b0461b6
Revert "Change Gather style to volunteer captains" This reverts commitsfb7d361
,d8134ca
, andebd60d1
.
27 lines
No EOL
687 B
Text
27 lines
No EOL
687 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 cuser.admin? %>
|
|
<%= link_to gatherer, method: :delete, class: 'delete' do %>
|
|
<%= icon 'times' %>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render partial: 'votes' %>
|
|
</div>
|
|
|
|
<%= render partial: 'status' %>
|
|
|