<%inherit file="base.mako"/> <%namespace name="nav" file="nav.mako" /> <%namespace file="navlinks.mako" import="navlinks" /> <%block name="navigation"> ${nav.nav('maps')} <%block name="title"> % if gmap: Map Information % endif ${parent.title()} % if gmap is None:

Sorry, that map wasn't found!

% else:

${gmap.name}

Added ${gmap.fuzzy_date()}

Top Scoring Players

<% i = 1 %> % for (score_player_id, score_nick, score_value) in top_scorers: % if score_player_id != '-': % else: % endif <% i = i+1 %> % endfor
# Nick Score
${i}${score_nick|n}${score_nick}${score_value}

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}

Most Active Servers

<% i = 1 %> % for (server_id, name, times_played) in top_servers: <% i = i+1 %> % endfor
# Name Times Played
${i} ${name} ${times_played}

Recent Games

% for (game, srv, map, pgstat) in recent_games: % if game != '-': % else: ${pgstat.nick_html_colors()|n} % endif % else: % endif % endfor
Type Time Winner
View ${game.game_type_cd} ${game.fuzzy_date()} % if pgstat.player_id > 2: ${pgstat.nick_html_colors()|n}
- - - -
% endif