%inherit file="base.mako"/>
<%block name="title">
Leaderboard
%block>
<%block name="hero_unit">
%block>
##### DUEL RANKS #####
Duel Ranks
# |
Nick |
Elo |
<% i = 1 %>
% for (player_id, nick, elo) in duel_ranks:
${i} |
% if player_id != '-':
${nick} |
% else:
${nick} |
% endif
% if elo != '-':
${round(elo, 3)} |
% else:
${elo} |
% endif
<% i = i+1 %>
% endfor
More...
##### CTF RANKS #####
CTF Ranks
# |
Nick |
Elo |
<% i = 1 %>
% for (player_id, nick, elo) in ctf_ranks:
${i} |
% if player_id != '-':
${nick} |
% else:
${nick} |
% endif
% if elo != '-':
${round(elo, 3)} |
% else:
${elo} |
% endif
<% i = i+1 %>
% endfor
More...
##### DM RANKS #####
DM Ranks
# |
Nick |
Elo |
<% i = 1 %>
% for (player_id, nick, elo) in dm_ranks:
${i} |
% if player_id != '-':
${nick} |
% else:
${nick} |
% endif
% if elo != '-':
${round(elo, 3)} |
% else:
${elo} |
% endif
<% i = i+1 %>
% endfor
More...
Most Active Players
# |
Nick |
Play Time |
<% i = 1 %>
% for (player_id, nick, alivetime) in top_players:
${i} |
% if player_id != '-':
${nick|n} |
% else:
${nick} |
% endif
${alivetime} |
<% i = i+1 %>
% endfor
*Most active stats are from the past 7 days
Most Active Servers
# |
Server |
Games |
<% i = 1 %>
% for (server_id, name, count) in top_servers:
${i} |
% if server_id != '-':
${name} |
% else:
${name} |
% endif
${count} |
<% i = i+1 %>
% endfor
Most Active Maps
# |
Map |
Games |
<% i = 1 %>
% for (map_id, name, count) in top_maps:
${i} |
% if map_id != '-':
${name} |
% else:
${name} |
% endif
${count} |
<% i = i+1 %>
% endfor
Recent Games
|
Type |
Server |
Map |
Time |
Winner |
% for (game, server, map, pgstat) in recent_games:
% if game != '-':
view |
|
${server.name} |
${map.name} |
${game.start_dt.strftime('%m/%d/%Y %H:%M')} |
% if pgstat.player_id > 2:
${pgstat.nick_html_colors()|n} |
% else:
${pgstat.nick_html_colors()|n}
% endif
% else:
- |
- |
- |
- |
- |
- |
% endif
% endfor