Highlights
<% if cuser and cuser.active_contests.count != 0 then %>

Your contests <%= link_to "(More)", :controller => :matches, :matchesTab => "YourTab" %>

    <% cuser.active_contests.each do |contest| %>
  1. <%= namelink contest %>
  2. <% end %>
<% end %> <% if Match.recent.count != 0 then %>

Latest Matches <%= link_to "(More)", :controller => :matches, :matchesTab => "RecentTab" %>

    <% Match.realfinished.reverse_order.recent.chrono.each do |match| %>
  1. <%= 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 %>
  2. <% end %>
<% end %> <% if Match.future5.count != 0 then %>

Upcoming matches <%= link_to "(More)", :controller => :matches, :matchesTab => "UpcomingTab" %>

    <% Match.future5.chrono.each do |match| %>
  1. <%= 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) %>%)
  2. <% end %>
<% end %>