2014-04-27 23:16:28 +00:00
|
|
|
<h1 class="title">Current Contests</h1>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
<% @contests.each do |contest| %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<h3><%= link_to contest.name, contest %></h3>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
<% if contest.contest_type == Contest::TYPE_BRACKET %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<%= render partial: "bracket", locals: { contest: contest } %>
|
2015-05-16 13:54:14 +00:00
|
|
|
<% elsif contest.contest_type == Contest::TYPE_LADDER %>
|
|
|
|
<%= render partial: "contesters/ladder",
|
|
|
|
locals: { actions: true, contest: contest } %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<% else %>
|
2015-05-16 13:54:14 +00:00
|
|
|
<%= render partial: "contesters/list",
|
|
|
|
locals: { contesters: contest.contesters.active.ordered,
|
|
|
|
actions: true, contest: contest } %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|