mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
23 lines
691 B
Text
23 lines
691 B
Text
<% @contests.each do |contest| %>
|
|
<% next if contest.matches.finished.count == 0 %>
|
|
<div class="wide box">
|
|
<h2 class="center">
|
|
<%= namelink contest %>
|
|
</h2>
|
|
<div class="center">
|
|
<%= longdate contest.start %> - <%= longdate contest.end %>
|
|
</div>
|
|
|
|
<div class="wide centered">
|
|
<% if contest.contest_type == Contest::TYPE_BRACKET %>
|
|
<%= render :partial => "bracket", :locals => {:contest => contest} %>
|
|
<% else %>
|
|
<%= render :partial => "contesters/list", :locals => {:contesters => contest.contesters.active.ordered, :actions => false} %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="clear">
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<% end %>
|