2014-04-15 09:59:52 +00:00
|
|
|
<div class="data players">
|
|
|
|
<h4>Signed Up</h4>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
<ul id="gatherers">
|
2014-03-23 00:22:25 +00:00
|
|
|
<% @gather.gatherers.each do |gatherer| %>
|
2014-04-15 09:59:52 +00:00
|
|
|
<li>
|
|
|
|
<%= flag gatherer.user.country %>
|
|
|
|
<%= namelink gatherer.user %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% if cuser and cuser.admin? %>
|
2014-04-15 09:59:52 +00:00
|
|
|
<%= link_to gatherer, method: :delete, class: 'delete' do %>
|
|
|
|
<%= icon 'times' %>
|
|
|
|
<% end %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
2014-04-15 09:59:52 +00:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
<%= render partial: 'votes' %>
|
|
|
|
<%= render partial: 'status' %>
|