mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
ca75960bdd
Improved content spacing Colour tweaks
44 lines
1.3 KiB
Text
44 lines
1.3 KiB
Text
<h1>Gather Archive</h1>
|
|
<h5 class="title">Players starred were captains for their respective teams.</h5>
|
|
|
|
<table class="gathers striped">
|
|
<tr>
|
|
<th class="date">Date</th>
|
|
<th class="team1">Team 1</th>
|
|
<th class="team2">Team 2</th>
|
|
</tr>
|
|
|
|
<% @gathers.each do |gather| %>
|
|
<tr class="<%= cycle('even', 'odd') %>">
|
|
<td><%= link_to gather.updated_at.strftime("%Y/%m/%d %H:%M:%S"), gather %></td>
|
|
<td>
|
|
<ul>
|
|
<% gather.gatherers.each do |gatherer| %>
|
|
<li>
|
|
<% if gatherer.team == 1 %>
|
|
<%= link_to gatherer.user.to_s, User.find_by_username(gatherer.user.to_s) %>
|
|
<% if gather.captain1 == gatherer %>
|
|
<%= icon 'star' %>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</td>
|
|
<td>
|
|
<ul>
|
|
<% gather.gatherers.each do |gatherer| %>
|
|
<li>
|
|
<% if gatherer.team == 2 %>
|
|
<%= link_to gatherer.user.to_s, User.find_by_username(gatherer.user.to_s) %>
|
|
<% if gather.captain2 == gatherer %>
|
|
<%= icon 'star' %>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|