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

Duel Ranks

<% i = 1 %> % for (player_id, nick, elo) in duel_ranks: % if player_id != '-': % else: % endif % if elo != '-': % else: % endif <% i = i+1 %> % endfor
# Nick Elo
${i}${nick}${nick}${round(elo, 3)}${elo}
#####

More...

##### CTF RANKS #####

CTF Ranks

<% i = 1 %> % for (player_id, nick, elo) in ctf_ranks: % if player_id != '-': % else: % endif % if elo != '-': % else: % endif <% i = i+1 %> % endfor
# Nick Elo
${i}${nick}${nick}${round(elo, 3)}${elo}
#####

More...

##### DM RANKS #####

DM Ranks

<% i = 1 %> % for (player_id, nick, elo) in dm_ranks: % if player_id != '-': % else: % endif % if elo != '-': % else: % endif <% i = i+1 %> % endfor
# Nick Elo
${i}${nick}${nick}${round(elo, 3)}${elo}
#####

More...

##### 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 Play Time
${i}${nick|n}${nick}${alivetime}

*Most active stats are from the past 7 days

##### 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}
##### 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}
- - - - - -