<%inherit file="base.mako"/> <%namespace name="nav" file="nav.mako" /> <%block name="navigation"> ${nav.nav('maps')} <%block name="title"> Map Active Players Index % if not top_players and last is not None:

Sorry, no more active players!

% elif not top_players and last is None:

No active players found. Yikes, get playing!

% else: ##### ACTIVE PLAYERS #####
% for tp in top_players: % endfor
# Nick Play Time
${tp.rank} ${tp.nick|n} ${tp.alivetime}

Note: these figures are from the past ${lifetime} days

% if len(top_players) == 20:
% endif % endif