<%inherit file="base.mako"/> <%block name="title"> Main Page - ${parent.title()}
##### TOP PLAYERS ##### % for (player_id, nick, score) in top_players: % if player_id != '-': % else: % endif % endfor
Top Players
# Nick Score
${player_id}${player_id}${nick} ${score}
##### TOP SERVERS ##### % for (server_id, name, count) in top_servers: % if server_id != '-': % else: % endif % endfor
Top Servers
# Server Games
${server_id}${server_id}${name} ${count}
##### TOP MAPS ##### % for (map_id, name, count) in top_maps: % if map_id != '-': % else: % endif % endfor
Top Maps
# Map Times Played
${map_id}${map_id}${name} ${count}
##### RECENT GAMES ##### % for (game, server, map) in recent_games: % if game != '-': % else: % endif % endfor
Recent Games
Game # Server Map Time Winner
${game.game_id} ${server.name} ${map.name} ${game.start_dt} ${game.winner}
- - - - -