%inherit file="base.mako"/>
<%namespace name="nav" file="nav.mako" />
<%namespace file="navlinks.mako" import="navlinks" />
<%block name="navigation">
${nav.nav('maps')}
%block>
<%block name="title">
% if gmap:
Map Information
% endif
${parent.title()}
%block>
<%block name="css">
${parent.css()}
%block>
% if gmap is None:
Sorry, that map wasn't found!
% else:
${gmap.name}
Added ${gmap.fuzzy_date()}
Top Scoring Players
# |
Nick |
Score |
<% i = 1 %>
% for (score_player_id, score_nick, score_value) in top_scorers:
${i} |
% if score_player_id != '-':
${score_nick|n} |
% else:
${score_nick} |
% endif
${score_value} |
<% i = i+1 %>
% endfor
Most Active Players
# |
Nick |
Playing 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 Servers
# |
Name |
Times Played |
<% i = 1 %>
% for (server_id, name, times_played) in top_servers:
${i} |
${name} |
${times_played} |
<% i = i+1 %>
% endfor
% if len(captimes) > 0:
% endif
% if len(recent_games) > 0:
% endif
% endif