mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
54 lines
1.9 KiB
Text
54 lines
1.9 KiB
Text
|
<table class="data">
|
||
|
<tr>
|
||
|
<th width="5%"> </th>
|
||
|
<th width="5%"> </th>
|
||
|
<th>Team</th>
|
||
|
<th></th>
|
||
|
<th width="5%">Score</th>
|
||
|
<th width="5%">Win</th>
|
||
|
<th width="5%">Loss</th>
|
||
|
<th width="5%">Draw</th>
|
||
|
<% if actions %>
|
||
|
<th width="5%">Actions</th>
|
||
|
<% end %>
|
||
|
</tr>
|
||
|
|
||
|
<% contesters.each do |contester| %>
|
||
|
<tr class="<%= cycle('even', 'odd') %>" height="18">
|
||
|
<% if contester.trend == Contester::TREND_UP %>
|
||
|
<td><%= image_tag "/images/icons/up.gif" %></td>
|
||
|
<% elsif contester.trend == Contester::TREND_DOWN %>
|
||
|
<td><%= image_tag "/images/icons/down.gif" %></td>
|
||
|
<% elsif contester.trend == Contester::TREND_FLAT %>
|
||
|
<td><%= image_tag "/images/icons/flat.gif" %></td>
|
||
|
<% else %>
|
||
|
<td></td>
|
||
|
<% end %>
|
||
|
<td><%= flag contester.team.country %></td>
|
||
|
<td><%= link_to (h contester.team.name), contester %></td>
|
||
|
<td><%= image_tag "/images/icons/gold.gif" if contester == contester.contest.winner %></td>
|
||
|
<td><%= h contester.total_score %></td>
|
||
|
<td><%= h contester.win %></td>
|
||
|
<td><%= h contester.loss %></td>
|
||
|
<td><%= h contester.draw %></td>
|
||
|
<% if actions %>
|
||
|
<td>
|
||
|
<% if @friendly %>
|
||
|
<% challenge = Challenge.new
|
||
|
challenge.contester1 = @friendly
|
||
|
challenge.contester2 = contester %>
|
||
|
<% if challenge.can_create? cuser %>
|
||
|
<%= link_to 'C', :controller => 'challenges', :id => contester, :action => 'new' %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% if cuser and cuser.admin? %>
|
||
|
<%= link_to 'E', edit_contester_path(contester) %>
|
||
|
<%= link_to 'D', contester, :confirm => 'Are you sure?', :method => :delete %>
|
||
|
<%= link_to 'R', :controller => "contesters", :action => "recalc", :id => contester %>
|
||
|
<% end %>
|
||
|
</td>
|
||
|
<% end %>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</table>
|