Current Contests
<% @contests.each do |contest| %>
<%= link_to contest.name, contest %>
<% 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: true } %>
<% end %>
<% end %>