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