<% if cuser and cuser.active_contests.count != 0 then %>
Your Matches
<%= link_to "More", controller: :matches, matches: 'your' %>
<% cuser.active_contests.each do |contest| %>
-
<%= namelink contest %>
<% end %>
<% end %>
<% if Match.recent.count != 0 then %>
Latest Matches
<%= link_to 'More', controller: :matches, matches: 'recent' %>
<% Match.realfinished.reverse_order.recent.chrono.each do |match| %>
-
<%= link_to match, :class => "bold #{match.score_color}" do %>
<%= h match.score1 %> - <%= h match.score2 %>
<%= link_to match.contester1.team.tag, controller: :contesters, action: :show, id: match.contester1 %> <%= if match.score1 > match.score2 then ">>" elsif match.score2 > match.score1 then "<<" else "==" end %> <%= link_to match.contester2.team.tag, controller: :contesters, action: :show, id: match.contester2 %>
(<%= link_to match.contest.short_name, :controller => :contests, :action => :show, :id => match.contest.id %>)
<% end %>
<% end %>
<% end %>
<% if Match.future5.count != 0 then %>
Upcoming matches
<%= link_to 'More', controller: :matches, matches: 'upcoming' %>
<% Match.future5.chrono.each do |match| %>
-
<%= namelink match, 50 %>
[<%= link_to match.contest.short_name, controller: :contests, action: :show, id: match.contest.id %>]
<%= shorttime match.match_time %>
<%= match.predictions.count %> preds : <%= match.preds(1) %>% - <%= match.preds(2) %>%
<% end %>
<% end %>