ensl.org/app/views/gathers/_running.html.erb
jamal cf0b0461b6 Revert "Fix some logic errors with captains"
Revert "Change Gather style to volunteer captains"

This reverts commits fb7d361, d8134ca, and ebd60d1.
2014-12-08 09:35:40 -05:00

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' %>