mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
37e768c68f
Added styling to gathers page Added styling to account page Improved forms styling
21 lines
496 B
Text
21 lines
496 B
Text
<div class="data players">
|
|
<h4>Signed Up</h4>
|
|
|
|
|
|
<ul id="gatherers">
|
|
<% @gather.gatherers.each do |gatherer| %>
|
|
<li>
|
|
<%= 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>
|
|
|
|
<%= render partial: 'votes' %>
|
|
<%= render partial: 'status' %>
|