<%inherit file="base.mako"/> <%block name="title"> Main Page - ${parent.title()} ##### RECENT GAMES #####

Recent Games

% for (game, server, map, pgstat) in recent_games: % if game != '-': % else: ${pgstat.nick_html_colors()|n} % endif % else: % endif % endfor
Game # Type Server Map Time Winner
${game.game_id} ${game.game_type_cd} ${server.name} ${map.name} ${game.start_dt.strftime('%m/%d/%Y %H:%M')} % if pgstat.player_id > 2: ${pgstat.nick_html_colors()|n}
- - - - - -
##### TOP PLAYERS #####

Most Active Players

<% i = 1 %> % for (player_id, nick, alivetime) in top_players: % if player_id != '-': % else: % endif <% i = i+1 %> % endfor
# Nick Playing Time
${i}${nick|n}${nick}${alivetime}
##### TOP SERVERS #####

Most Active Servers

<% i = 1 %> % for (server_id, name, count) in top_servers: % if server_id != '-': % else: % endif <% i = i+1 %> % endfor
# Server # Games
${i}${name}${name}${count}
##### TOP MAPS #####

Most Active Maps

<% i = 1 %> % for (map_id, name, count) in top_maps: % if map_id != '-': % else: % endif <% i = i+1 %> % endfor
# Map # Games
${i}${name}${name}${count}