mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
5487854a6c
Added new ISO country code flag icons to asset pipeline Lots and lots of new style changes Began converting to JS to coffeescript
11 lines
390 B
Text
11 lines
390 B
Text
<h1>Current Contests</h1>
|
|
|
|
<% @contests.each do |contest| %>
|
|
<h3><%= link_to contest.name, contest %></h3>
|
|
|
|
<% 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 %>
|