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

Sorry, no more players!

% elif not top_players and start is None:

No active players found. Yikes, get playing!

% else: ##### ACTIVE PLAYERS #####
% for tp in top_players: % endfor
# Nick Play Time
${tp.sort_order} ${tp.nick_html_colors()|n} ${tp.alivetime}

Note: these figures are from the past 7 days

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